scons_gd/scons/test/ninja/ninja-fixture/test1.c
2022-10-15 16:06:26 +02:00

22 lines
319 B
C

#include <stdio.h>
#include <stdlib.h>
#ifdef WIN32
#ifdef LIBRARY_BUILD
#define DLLEXPORT __declspec(dllexport)
#else
#define DLLEXPORT __declspec(dllimport)
#endif
#else
#define DLLEXPORT
#endif
DLLEXPORT extern int library_function(void);
int
main(int argc, char *argv[])
{
library_function();
exit(0);
}