diff options
Diffstat (limited to 'taint.c')
-rw-r--r-- | taint.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -8,9 +8,7 @@ #include "perl.h" void -taint_proper(f, s) -const char *f; -char *s; +taint_proper(const char *f, char *s) { char *ug; @@ -32,7 +30,7 @@ char *s; } void -taint_env() +taint_env(void) { SV** svp; MAGIC* mg; |