You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
410 B
20 lines
410 B
16 years ago
|
#include <stdio.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
if ( argc < 2 )
|
||
|
{
|
||
|
fprintf(stderr, "Usage: %s <file>\n", argv[0]);
|
||
|
return 1;
|
||
|
}
|
||
|
FILE *fp = fopen(argv[1],"w");
|
||
|
#ifdef GENERATOR_EXTERN
|
||
|
fprintf(fp,"int generated() { return 3; }\n");
|
||
|
#else
|
||
|
fprintf(fp,"extern int gen_redirect(void);\n");
|
||
|
fprintf(fp,"int generated() { return gen_redirect(); }\n");
|
||
|
#endif
|
||
|
fclose(fp);
|
||
|
return 0;
|
||
|
}
|