summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico G. Schwindt <fgsch@cvs.openbsd.org>2000-09-25 07:06:27 +0000
committerFederico G. Schwindt <fgsch@cvs.openbsd.org>2000-09-25 07:06:27 +0000
commitb6d4442fa6ad89d8378b8ff40f0a6bbf1a63b838 (patch)
tree51d8cf6fe4476578fe0e7cbe0d06027156ab8aba
parent0f150e4015fa63b0a030e83d15e1fa79b3048999 (diff)
char const* -> const char *
-rw-r--r--lib/libc/sys/execve.24
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.