summaryrefslogtreecommitdiffstats
path: root/usr.sbin/netgroup_mkdb/util.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2004-08-01 18:32:17 +0000
committerderaadt <deraadt@openbsd.org>2004-08-01 18:32:17 +0000
commitf56bb1bd7ef91597b1c308891aae151d18bc0ac7 (patch)
tree9a33a25799920e408838c931715eda1fa2e2f5bc /usr.sbin/netgroup_mkdb/util.c
parentTrim include file list. (diff)
downloadwireguard-openbsd-f56bb1bd7ef91597b1c308891aae151d18bc0ac7.tar.xz
wireguard-openbsd-f56bb1bd7ef91597b1c308891aae151d18bc0ac7.zip
ansi cleanup; khalek@linuxgamers.net
Diffstat (limited to 'usr.sbin/netgroup_mkdb/util.c')
-rw-r--r--usr.sbin/netgroup_mkdb/util.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/usr.sbin/netgroup_mkdb/util.c b/usr.sbin/netgroup_mkdb/util.c
index b418409caf2..7c83232c1ca 100644
--- a/usr.sbin/netgroup_mkdb/util.c
+++ b/usr.sbin/netgroup_mkdb/util.c
@@ -30,7 +30,7 @@
*/
#ifndef lint
-static char *rcsid = "$Id: util.c,v 1.2 1997/04/15 15:06:13 deraadt Exp $";
+static char *rcsid = "$Id: util.c,v 1.3 2004/08/01 18:32:20 deraadt Exp $";
#endif
#include <err.h>
@@ -43,8 +43,7 @@ static char *rcsid = "$Id: util.c,v 1.2 1997/04/15 15:06:13 deraadt Exp $";
* Error checked malloc
*/
void *
-emalloc(s)
- size_t s;
+emalloc(size_t s)
{
void *ptr = malloc(s);
if (ptr == NULL)
@@ -58,9 +57,7 @@ emalloc(s)
* Error checked realloc
*/
void *
-erealloc(p, s)
- void *p;
- size_t s;
+erealloc(void *p, size_t s)
{
void *ptr = realloc(p, s);
if (ptr == NULL)
@@ -75,9 +72,7 @@ erealloc(p, s)
* and eliminating trailing newlines.
*/
char *
-getline(fp, size)
- FILE *fp;
- size_t *size;
+getline(FILE *fp, size_t *size)
{
size_t s, len = 0;
char *buf = NULL;