diff options
Diffstat (limited to 'tst')
-rw-r--r-- | tst/va_test.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tst/va_test.c b/tst/va_test.c index fdba4be..ac070ca 100644 --- a/tst/va_test.c +++ b/tst/va_test.c @@ -17,12 +17,20 @@ } */ +#ifdef __cplusplus +extern"C" { +#endif + #define espik_debug_print (fmt, ...) \ { \ fprintf (stdout, "%s, %s, %i: ", __FUNCTION__, __FILE__, __LINE__); \ vfprintf (stdout, fmt, ## __VA_ARGS__); \ } +#ifdef __cplusplus +} +#endif + int main() { int a = 10; |