diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-07-05 17:17:22 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-07-05 17:17:22 +0000 |
commit | 5b877257c279c72efd65c092c32959c904c739e8 (patch) | |
tree | 919d1549e2e3b64da1557bebdfff999658705550 /util.c | |
parent | 049fc1c86dccf1e1a1afcb2acb4ac5e1259cf74b (diff) | |
download | perl-5b877257c279c72efd65c092c32959c904c739e8.tar.gz |
AIX threaded build, plus few more on the side.
p4raw-id: //depot/cfgperl@3592
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1489,7 +1489,7 @@ Perl_die_nocontext(const char* pat, ...) OP *o; va_list args; va_start(args, pat); - o = do_die(aTHX_ pat, &args); + o = do_die(pat, &args); va_end(args); return o; } @@ -1501,7 +1501,7 @@ Perl_die(pTHX_ const char* pat, ...) OP *o; va_list args; va_start(args, pat); - o = do_die(aTHX_ pat, &args); + o = do_die(pat, &args); va_end(args); return o; } @@ -3507,7 +3507,7 @@ Perl_my_fflush_all(pTHX) } double -Perl_my_atof(const char* s) { +Perl_my_atof(pTHX_ const char* s) { #ifdef USE_LOCALE_NUMERIC if ((PL_hints & HINT_LOCALE) && PL_numeric_local) { double x, y; |