blob: 1124d14c0f1003973d8426cb2b865779adac5b81 [file] [log] [blame]
#include <stdio.h>
#if defined(_WIN32) && !defined(GREETING_STATIC)
__declspec(dllexport)
#endif
void greeting(void)
{
printf("Hello world!\n");
fflush(stdout);
}