Files
CMake/Tests/RunCMake/AutoExportDll/foo.c
2023-10-26 09:20:45 -04:00

16 lines
139 B
C

#ifdef _MSC_VER
# include "windows.h"
#else
# define WINAPI
#endif
int WINAPI foo(void)
{
return 10;
}
int bar(void)
{
return 5;
}