diff options
author | Thomas Nordin <nordin@cvs.openbsd.org> | 2002-01-02 06:16:11 +0000 |
---|---|---|
committer | Thomas Nordin <nordin@cvs.openbsd.org> | 2002-01-02 06:16:11 +0000 |
commit | 72d57199e90be5ef547b0f576fbd39b52dab0432 (patch) | |
tree | 46375e40c2321b02ecae2def72272eeba6eb39e3 | |
parent | 6a53e5498e5914022bd0bc28eb6d781c86366188 (diff) |
Move the const qualifier to the right place. deraadt@ ok
-rw-r--r-- | lib/libc/sys/execve.2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/execve.2 b/lib/libc/sys/execve.2 index 68522a983af..444f282fe34 100644 --- a/lib/libc/sys/execve.2 +++ b/lib/libc/sys/execve.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: execve.2,v 1.17 2001/03/14 04:01:59 aaron Exp $ +.\" $OpenBSD: execve.2,v 1.18 2002/01/02 06:16:10 nordin Exp $ .\" $NetBSD: execve.2,v 1.9 1995/02/27 12:32:25 cgd Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 @@ -44,7 +44,7 @@ .Sh SYNOPSIS .Fd #include <unistd.h> .Ft int -.Fn execve "const char *path" "const char *argv[]" "const char *envp[]" +.Fn execve "const char *path" "char *const argv[]" "char *const envp[]" .Ft int .Fn exect "const char *path" "char *const argv[]" "char *const envp[]" .Sh DESCRIPTION |