diff options
Diffstat (limited to 'newlib/libc/reent/execr.c')
-rw-r--r-- | newlib/libc/reent/execr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/reent/execr.c b/newlib/libc/reent/execr.c index 559ca03..cb78fba 100644 --- a/newlib/libc/reent/execr.c +++ b/newlib/libc/reent/execr.c @@ -46,9 +46,9 @@ DESCRIPTION int _DEFUN (_execve_r, (ptr, name, argv, env), - struct _reent *ptr _AND - _CONST char *name _AND - char *_CONST argv[] _AND + struct _reent *ptr, + _CONST char *name, + char *_CONST argv[], char *_CONST env[]) { int ret; @@ -114,7 +114,7 @@ DESCRIPTION int _DEFUN (_wait_r, (ptr, status), - struct _reent *ptr _AND + struct _reent *ptr, int *status) { int ret; |