diff options
Diffstat (limited to 'newlib/libc/posix/execvp.c')
-rw-r--r-- | newlib/libc/posix/execvp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/posix/execvp.c b/newlib/libc/posix/execvp.c index db7e034..1c1fd3a 100644 --- a/newlib/libc/posix/execvp.c +++ b/newlib/libc/posix/execvp.c @@ -37,8 +37,8 @@ _DEFUN (strccpy, (s1, s2, c), int _DEFUN (execvp, (file, argv), - _CONST char *file, - char * _CONST argv[]) + const char *file, + char * const argv[]) { char *path = getenv ("PATH"); char buf[MAXNAMLEN]; |