10 lines
103 B
C
10 lines
103 B
C
|
#include <stdio.h>
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
__declspec(dllexport)
|
||
|
#endif
|
||
|
void foo(void)
|
||
|
{
|
||
|
printf("foo()\n");
|
||
|
}
|