diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2015-09-14 12:08:23 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2015-09-14 12:08:23 +0000 |
commit | 0ceafbe1ce6f3b3ad0823b91cc103cb76c86fca3 (patch) | |
tree | cb90702b67998251954370ad5555115d1d6ef792 | |
parent | bf17aaac9a3261d0bd4d76a6f16858efd96f65c2 (diff) |
KNF
-rw-r--r-- | lib/libc/sys/semctl.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/sys/semctl.c b/lib/libc/sys/semctl.c index ecc4156249f..02ed5588a20 100644 --- a/lib/libc/sys/semctl.c +++ b/lib/libc/sys/semctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: semctl.c,v 1.8 2014/11/15 22:38:47 guenther Exp $ */ +/* $OpenBSD: semctl.c,v 1.9 2015/09/14 12:08:22 guenther Exp $ */ /* * Copyright (c) 1994, 1995 Christopher G. Demetriou * All rights reserved. @@ -34,7 +34,8 @@ #include <stdarg.h> #include <stdlib.h> -int semctl(int semid, int semnum, int cmd, ...) +int +semctl(int semid, int semnum, int cmd, ...) { va_list ap; union semun semun; |