diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-08-02 07:38:48 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-08-02 07:38:48 +0000 |
commit | 2dd19d29b7ab4e411be78dd1e4896a0211177a70 (patch) | |
tree | 4725123dea4dbc8ee814b8c980203830c5eca824 /win32 | |
parent | e1c4585fc0bf6d46867768227f48002b70bf4095 (diff) | |
download | perl-2dd19d29b7ab4e411be78dd1e4896a0211177a70.tar.gz |
C needs parameter list, not merely type
p4raw-id: //depot/perl@3872
Diffstat (limited to 'win32')
-rw-r--r-- | win32/win32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/win32.c b/win32/win32.c index e705e4d765..22b2c0a98f 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -2488,7 +2488,7 @@ get_childenv(void) } void -free_childenv(void*) +free_childenv(void* d) { } @@ -2499,7 +2499,7 @@ get_childdir(void) } void -free_childdir(char*) +free_childdir(char* d) { } |