diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-03-02 12:24:27 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-03-02 12:24:27 +0000 |
commit | d7ac0d7978739b80c4ff29e425e864b051a7b407 (patch) | |
tree | ae6de0ddadcb4eaceeb35abd28b0ec83b19551e1 /lib/libc | |
parent | 6f460bab88948d7d2f7f1c9a8751306bf1bed7ca (diff) |
Fix typo that breaks compilation #ifndef __weak_alias; Francois Perrad
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/stdlib/strtoll.c | 4 | ||||
-rw-r--r-- | lib/libc/stdlib/strtoull.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/stdlib/strtoll.c b/lib/libc/stdlib/strtoll.c index ac9353890fb..5002e9ed645 100644 --- a/lib/libc/stdlib/strtoll.c +++ b/lib/libc/stdlib/strtoll.c @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: strtoll.c,v 1.2 2003/06/02 20:18:38 millert Exp $"; +static const char rcsid[] = "$OpenBSD: strtoll.c,v 1.3 2005/03/02 12:24:26 millert Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -157,6 +157,6 @@ strtoq(nptr, endptr, base) int base; { - return ((quad_t)strtoll(nptr, endptr, base); + return ((quad_t)strtoll(nptr, endptr, base)); } #endif diff --git a/lib/libc/stdlib/strtoull.c b/lib/libc/stdlib/strtoull.c index a0ac9b381f0..c383f1d83fa 100644 --- a/lib/libc/stdlib/strtoull.c +++ b/lib/libc/stdlib/strtoull.c @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static const char rcsid[] = "$OpenBSD: strtoull.c,v 1.2 2003/06/02 20:18:38 millert Exp $"; +static const char rcsid[] = "$OpenBSD: strtoull.c,v 1.3 2005/03/02 12:24:26 millert Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> @@ -119,6 +119,6 @@ strtouq(nptr, endptr, base) int base; { - return ((u_quad_t)strtoull(nptr, endptr, base); + return ((u_quad_t)strtoull(nptr, endptr, base)); } #endif |