diff options
Diffstat (limited to 'newlib/libc/posix/execle.c')
-rw-r--r-- | newlib/libc/posix/execle.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/posix/execle.c b/newlib/libc/posix/execle.c index 2b22036..f4c7592 100644 --- a/newlib/libc/posix/execle.c +++ b/newlib/libc/posix/execle.c @@ -14,7 +14,7 @@ int _DEFUN(execle, (path, arg0, ...), - _CONST char *path _AND + _CONST char *path, _CONST char *arg0 _DOTS) #else @@ -23,8 +23,8 @@ _DEFUN(execle, (path, arg0, ...), int _DEFUN(execle, (path, arg0, va_alist), - _CONST char *path _AND - _CONST char *arg0 _AND + _CONST char *path, + _CONST char *arg0, va_dcl) #endif |