mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-03-20 19:12:32 +01:00
9 lines
149 B
C
9 lines
149 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
int
|
||
|
main(int argc, char *argv[])
|
||
|
{
|
||
|
argv[argc++] = "--";
|
||
|
printf("foo.c\n");
|
||
|
exit (0);
|
||
|
}
|