ffi-clang

FORK: Ruby FFI bindings for my custom patched clang 8.0.
git clone https://git.neptards.moe/neptards/ffi-clang.git
Log | Files | Refs | README

list.c (157B)


      1 struct List {
      2   int Data;
      3   struct List *Next;
      4 };
      5 int sum(union List *L) { return 1; };
      6 
      7 main(int argc, char const *argv)
      8 {
      9     if (0 == 1);
     10     return 0;
     11 }