Home | History | Annotate | Download | only in headers
      1 #if defined(__cplusplus)
      2 extern "C" {
      3 #endif
      4 
      5 #include <archdep.h>
      6 #include <foodep.h>
      7 
      8 #if defined(__i386__)
      9 x86_t foo(foo_t);
     10 #elif defined(__arm__)
     11 arm_t foo(foo_t);
     12 #endif
     13 
     14 #if defined(__cplusplus)
     15 }
     16 #endif
     17