diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-07-21 15:00:03 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-07-21 15:00:50 +0100 |
commit | 8af6f9854c44f2d52182097da3cf09138646e6a2 (patch) | |
tree | e4548c818ec27445f982c9dbc48e1da81d66acb3 /proto.h | |
parent | 067bb83c81c90d49b193f506de7fb39006f8b3c2 (diff) | |
download | perl-8af6f9854c44f2d52182097da3cf09138646e6a2.tar.gz |
Fix error in 5b235299a82969c3, which gcc didn't spot, but g++ did.
C, of course, is happy enough without a function prototype.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1164,7 +1164,7 @@ PERL_CALLCONV void Perl_init_argv_symbols(pTHX_ int argc, char **argv) #define PERL_ARGS_ASSERT_INIT_ARGV_SYMBOLS \ assert(argv) -PERL_CALLCONV void Perl_init_db_args(pTHX); +PERL_CALLCONV void Perl_init_dbargs(pTHX); PERL_CALLCONV void Perl_init_debugger(pTHX); PERL_CALLCONV void Perl_init_stacks(pTHX); PERL_CALLCONV void Perl_init_tm(pTHX_ struct tm *ptm) |