diff options
author | 2000-09-25 07:06:26 +0000 | |
---|---|---|
committer | 2000-09-25 07:06:26 +0000 | |
commit | 30cdf0e9c22a6b401f594da6d03ce5dbc3b324bc (patch) | |
tree | 01dcdec8e178ecf68cc2be2e343dcc86bf7eb900 /lib/libc | |
parent | prepare for thread switching (diff) | |
download | wireguard-openbsd-30cdf0e9c22a6b401f594da6d03ce5dbc3b324bc.tar.xz wireguard-openbsd-30cdf0e9c22a6b401f594da6d03ce5dbc3b324bc.zip |
char const* -> const char *
Diffstat (limited to 'lib/libc')
-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 0baa95e9dcd..b26a3801433 100644 --- a/lib/libc/sys/execve.2 +++ b/lib/libc/sys/execve.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: execve.2,v 1.14 2000/04/28 20:51:26 deraadt Exp $ +.\" $OpenBSD: execve.2,v 1.15 2000/09/25 07:06:26 fgsch Exp $ .\" $NetBSD: execve.2,v 1.9 1995/02/27 12:32:25 cgd Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 @@ -43,7 +43,7 @@ .Sh SYNOPSIS .Fd #include <unistd.h> .Ft int -.Fn execve "const char *path" "char *const argv[]" "char *const envp[]" +.Fn execve "const char *path" "const char *argv[]" "const char *envp[]" .Sh DESCRIPTION .Fn execve transforms the calling process into a new process. |