mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 18:07:12 +01:00
12 lines
138 B
C
12 lines
138 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
(void)argc;
|
|
(void)argv;
|
|
|
|
puts("This is a simple test program.\n");
|
|
|
|
return 0;
|
|
}
|