diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 1997-10-31 01:43:49 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 1997-10-31 01:43:49 +0000 |
commit | 8ac853655d9b744749adcb9687c13d99cdd6e9fb (patch) | |
tree | c32146679d3473063e5fce6090b93706d7602ad6 /miniperlmain.c | |
parent | 27332437a2ed19419cce5a4de680085fd4d13c8d (diff) | |
download | perl-8ac853655d9b744749adcb9687c13d99cdd6e9fb.tar.gz |
Convert miniperl sources to ANSI C. Several passes of
GNU C's 'protoize' plus a few hand edits.
Will compile miniperl with gcc -x c++ (i.e. treat .c a C++ files)
Does not link seems gcc's C++ does not define a symbol for
const char foo[] = "....";
i.e. with empty [].
p4raw-id: //depot/ansiperl@194
Diffstat (limited to 'miniperlmain.c')
-rw-r--r-- | miniperlmain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miniperlmain.c b/miniperlmain.c index 402f2ef065..a55a8556f4 100644 --- a/miniperlmain.c +++ b/miniperlmain.c @@ -65,7 +65,7 @@ char **env; /* Do not delete this line--writemain depends on it */ static void -xs_init() +xs_init(void) { dXSUB_SYS; } |