summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2015-09-14 12:08:23 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2015-09-14 12:08:23 +0000
commit0ceafbe1ce6f3b3ad0823b91cc103cb76c86fca3 (patch)
treecb90702b67998251954370ad5555115d1d6ef792
parentbf17aaac9a3261d0bd4d76a6f16858efd96f65c2 (diff)
KNF
-rw-r--r--lib/libc/sys/semctl.c5
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;