From ff131b980d524a33d8a43cefe65e14f64a43f2da Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Tue, 10 Apr 2007 15:42:06 +0000 Subject: style fixes. No code changes. --- util-linux/ipcrm.c | 2 +- util-linux/ipcs.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'util-linux') diff --git a/util-linux/ipcrm.c b/util-linux/ipcrm.c index d13fb83..025f527 100644 --- a/util-linux/ipcrm.c +++ b/util-linux/ipcrm.c @@ -17,7 +17,7 @@ #include #include -#if defined (__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED) +#if defined(__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED) /* union semun is defined by including */ #else /* according to X/OPEN we have to define it ourselves */ diff --git a/util-linux/ipcs.c b/util-linux/ipcs.c index 5a7b224..489480c 100644 --- a/util-linux/ipcs.c +++ b/util-linux/ipcs.c @@ -67,7 +67,7 @@ struct shm_info { /* The last arg of semctl is a union semun, but where is it defined? X/OPEN tells us to define it ourselves, but until recently Linux include files would also define it. */ -#if defined (__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED) +#if defined(__GNU_LIBRARY__) && !defined(_SEM_SEMUN_UNDEFINED) /* union semun is defined by including */ #else /* according to X/OPEN we have to define it ourselves */ @@ -84,7 +84,7 @@ union semun { , which defines a struct ipc_perm with such fields. glibc-1.09 has no support for sysv ipc. glibc 2 uses __key, __seq */ -#if defined (__GNU_LIBRARY__) && __GNU_LIBRARY__ > 1 +#if defined(__GNU_LIBRARY__) && __GNU_LIBRARY__ > 1 #define KEY __key #else #define KEY key -- cgit v1.1