diff options
-rw-r--r-- | include/unistd.h | 3 | ||||
-rw-r--r-- | lib/libc/sys/Makefile.inc | 4 | ||||
-rw-r--r-- | usr.bin/sup/src/sysent.h | 3 |
3 files changed, 4 insertions, 6 deletions
diff --git a/include/unistd.h b/include/unistd.h index ea3db0d8941..fd130d72461 100644 --- a/include/unistd.h +++ b/include/unistd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: unistd.h,v 1.45 2002/12/03 20:24:29 millert Exp $ */ +/* $OpenBSD: unistd.h,v 1.46 2003/05/10 17:51:39 miod Exp $ */ /* $NetBSD: unistd.h,v 1.26.4.1 1996/05/28 02:31:51 mrg Exp $ */ /*- @@ -205,7 +205,6 @@ int setruid(uid_t); void setusershell(void); int strtofflags(char **, u_int32_t *, u_int32_t *); void swab(const void *, void *, size_t); -int swapon(const char *); int swapctl(int cmd, const void *arg, int misc); int symlink(const char *, const char *); void sync(void); diff --git a/lib/libc/sys/Makefile.inc b/lib/libc/sys/Makefile.inc index 4501f4d6445..ee78625d6b0 100644 --- a/lib/libc/sys/Makefile.inc +++ b/lib/libc/sys/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.65 2003/04/14 04:53:50 art Exp $ +# $OpenBSD: Makefile.inc,v 1.66 2003/05/10 17:52:17 miod Exp $ # $NetBSD: Makefile.inc,v 1.35 1995/10/16 23:49:07 jtc Exp $ # @(#)Makefile.inc 8.1 (Berkeley) 6/17/93 @@ -54,7 +54,7 @@ ASM= accept.o access.o acct.o adjtime.o bind.o chdir.o chflags.o chmod.o \ setpriority.o setregid.o setreuid.o setresgid.o setresuid.o \ setrlimit.o setsid.o setsockopt.o settimeofday.o \ setuid.o shmat.o shmctl.o shmdt.o shmget.o shutdown.o sigaction.o \ - sigaltstack.o socket.o socketpair.o stat.o statfs.o swapon.o swapctl.o \ + sigaltstack.o socket.o socketpair.o stat.o statfs.o swapctl.o \ symlink.o sync.o sysarch.o umask.o undelete.o unlink.o unmount.o \ utimes.o vadvise.o wait4.o write.o writev.o xfspioctl.o __semctl.o \ __syscall.o __sysctl.o diff --git a/usr.bin/sup/src/sysent.h b/usr.bin/sup/src/sysent.h index f6a1d5141b0..7d639fdf365 100644 --- a/usr.bin/sup/src/sysent.h +++ b/usr.bin/sup/src/sysent.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sysent.h,v 1.7 2002/02/19 19:39:39 millert Exp $ */ +/* $OpenBSD: sysent.h,v 1.8 2003/05/10 17:52:17 miod Exp $ */ /* * Copyright (c) 1991 Carnegie Mellon University @@ -109,7 +109,6 @@ extern int setpgrp(int, int); extern int setquota(const char *, const char *); extern int setregid(gid_t, gid_t); extern int setreuid(uid_t, uid_t); -extern int swapon(const char *); extern int symlink(const char *, const char *); extern void sync(void); extern int syscall(int, ...); |