diff options
author | 2014-11-15 22:38:47 +0000 | |
---|---|---|
committer | 2014-11-15 22:38:47 +0000 | |
commit | ee6e787a038374b310437decdf497304789991b5 (patch) | |
tree | 43733bb4c1e9ae87b1b948129f0de1e0d193b208 /lib/libc/sys | |
parent | Don't need <sys/types.h> before <sys/ipc.h> anymore (diff) | |
download | wireguard-openbsd-ee6e787a038374b310437decdf497304789991b5.tar.xz wireguard-openbsd-ee6e787a038374b310437decdf497304789991b5.zip |
Delete some unnecessary #includes
Diffstat (limited to 'lib/libc/sys')
-rw-r--r-- | lib/libc/sys/semctl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libc/sys/semctl.c b/lib/libc/sys/semctl.c index d3bba9fdb13..ecc4156249f 100644 --- a/lib/libc/sys/semctl.c +++ b/lib/libc/sys/semctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: semctl.c,v 1.7 2005/08/08 08:05:37 espie Exp $ */ +/* $OpenBSD: semctl.c,v 1.8 2014/11/15 22:38:47 guenther Exp $ */ /* * Copyright (c) 1994, 1995 Christopher G. Demetriou * All rights reserved. @@ -30,8 +30,6 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include <sys/types.h> -#include <sys/ipc.h> #include <sys/sem.h> #include <stdarg.h> #include <stdlib.h> |