diff options
Diffstat (limited to 'usr.sbin/xntpd/lib/atouint.c')
-rw-r--r-- | usr.sbin/xntpd/lib/atouint.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/xntpd/lib/atouint.c b/usr.sbin/xntpd/lib/atouint.c index b27653f..d826bb4 100644 --- a/usr.sbin/xntpd/lib/atouint.c +++ b/usr.sbin/xntpd/lib/atouint.c @@ -1,4 +1,4 @@ -/* atouint.c,v 3.1 1993/07/06 01:07:42 jbj Exp +/* * atouint - convert an ascii string to an unsigned long, with error checking */ #include <sys/types.h> @@ -9,9 +9,9 @@ int atouint(str, uval) const char *str; - U_LONG *uval; + u_long *uval; { - register U_LONG u; + register u_long u; register const char *cp; cp = str; |