summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2000-02-19 13:21:26 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2000-02-19 13:21:26 +0000
commite7cb4d26c9e9f3e98e55a7e534f023bc7fcc7cce (patch)
tree1e973691389c224706cbd7f7f4fdf341fac88316
parentc329e77f46508f988304f4fb3596442964f61d73 (diff)
swapctl 2nd arg is const
-rw-r--r--include/unistd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unistd.h b/include/unistd.h
index e8fe19b2a62..050ec914e31 100644
--- a/include/unistd.h
+++ b/include/unistd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: unistd.h,v 1.29 2000/01/27 05:18:47 itojun Exp $ */
+/* $OpenBSD: unistd.h,v 1.30 2000/02/19 13:21:25 deraadt Exp $ */
/* $NetBSD: unistd.h,v 1.26.4.1 1996/05/28 02:31:51 mrg Exp $ */
/*-
@@ -185,7 +185,7 @@ int setruid __P((uid_t));
void setusershell __P((void));
void swab __P((const void *, void *, size_t));
int swapon __P((const char *));
-int swapctl __P((int cmd, void *arg, int misc));
+int swapctl __P((int cmd, const void *arg, int misc));
int symlink __P((const char *, const char *));
void sync __P((void));
int syscall __P((int, ...));