diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-04-05 14:48:33 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-04-05 14:48:33 +0000 |
commit | a733a8a07e00b5db8b5f31499d376e2c78834665 (patch) | |
tree | 4a2db74842d36ea2161d75146f79ef035d786ba3 /ext | |
parent | c0c947a6c11823189777ee916efeb0fc3a5537e6 (diff) | |
download | perl-a733a8a07e00b5db8b5f31499d376e2c78834665.tar.gz |
Down with K&R function arguments
p4raw-id: //depot/perl@24161
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Cwd/Cwd.xs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/Cwd/Cwd.xs b/ext/Cwd/Cwd.xs index 00ebcc79b8..97c583ff53 100644 --- a/ext/Cwd/Cwd.xs +++ b/ext/Cwd/Cwd.xs @@ -70,9 +70,7 @@ static char *rcsid = "$OpenBSD: realpath.c,v 1.4 1998/05/18 09:55:19 deraadt Exp */ static char * -bsd_realpath(path, resolved) - const char *path; - char *resolved; +bsd_realpath(const char *path, char *resolved) { #ifdef VMS dTHX; |