17 lines
211 B
C
17 lines
211 B
C
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <archdep.h>
|
|
#include <foodep.h>
|
|
|
|
#if defined(__i386__)
|
|
x86_t foo(foo_t);
|
|
#elif defined(__arm__)
|
|
arm_t foo(foo_t);
|
|
#endif
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|