summaryrefslogtreecommitdiff
path: root/sys/lib/libsa/net.c
diff options
context:
space:
mode:
authorpk <pk@NetBSD.org>1999-02-11 09:10:43 +0000
committerpk <pk@NetBSD.org>1999-02-11 09:10:43 +0000
commiteee0165e87475372d51044eb4600a830c146ab3f (patch)
tree0466eb304ec2fd2c9aaff0d584fae9b88abd70a8 /sys/lib/libsa/net.c
parent08f1cf64082c055dc6c2449543ee6d45f30c8a49 (diff)
Add missing prototypes.
Diffstat (limited to 'sys/lib/libsa/net.c')
-rw-r--r--sys/lib/libsa/net.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/lib/libsa/net.c b/sys/lib/libsa/net.c
index aedf2c35ab5..ea6fc519896 100644
--- a/sys/lib/libsa/net.c
+++ b/sys/lib/libsa/net.c
@@ -1,4 +1,4 @@
-/* $NetBSD: net.c,v 1.20 1997/12/26 22:41:30 scottr Exp $ */
+/* $NetBSD: net.c,v 1.21 1999/02/11 09:10:44 pk Exp $ */
/*
* Copyright (c) 1992 Regents of the University of California.
@@ -61,6 +61,9 @@
#include "stand.h"
#include "net.h"
+
+static char *number __P((char *, int *));
+
/* Caller must leave room for ethernet, ip and udp headers in front!! */
ssize_t
sendudp(d, pkt, len)
@@ -467,6 +470,7 @@ intoa(addr)
return (cp+1);
}
+
static char *
number(s, n)
char *s;