Commit 03cad97d by Per Bothner

gen-protos.c (progname): New variable (needed by cppalloc.c).

* gen-protos.c (progname):  New variable (needed by cppalloc.c).
(main):  Set progname.

From-SVN: r12212
parent b3ea4fca
...@@ -40,6 +40,7 @@ hashf (name, len, hashsize) ...@@ -40,6 +40,7 @@ hashf (name, len, hashsize)
int hash_tab[HASH_SIZE]; int hash_tab[HASH_SIZE];
int verbose = 0; int verbose = 0;
char *progname;
sstring linebuf; sstring linebuf;
...@@ -63,6 +64,10 @@ main (argc, argv) ...@@ -63,6 +64,10 @@ main (argc, argv)
int next_index = 0; int next_index = 0;
int i, i0; int i, i0;
i = strlen (argv[0]);
while (i > 0 && argv[i-1] != '/') --i;
progname = &argv[i];
fprintf (outf, "struct fn_decl std_protos[] = {\n"); fprintf (outf, "struct fn_decl std_protos[] = {\n");
for (;;) for (;;)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment