11 lines
170 B
C
11 lines
170 B
C
#include <stdio.h>
|
|
|
|
#if defined(_WIN32) && !defined(GREETING_STATIC)
|
|
__declspec(dllexport)
|
|
#endif
|
|
void greeting(void)
|
|
{
|
|
printf("Hello world!\n");
|
|
fflush(stdout);
|
|
}
|