summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/strtoull.c
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2005-03-02 12:24:26 +0000
committermillert <millert@openbsd.org>2005-03-02 12:24:26 +0000
commita187eb0ed1eb14bd960a2eca47ae1ea73a42adef (patch)
tree82669117bbdf2d9f6677a556ef335b69e994baa1 /lib/libc/stdlib/strtoull.c
parentclarify section on packet forwarding; (diff)
downloadwireguard-openbsd-a187eb0ed1eb14bd960a2eca47ae1ea73a42adef.tar.xz
wireguard-openbsd-a187eb0ed1eb14bd960a2eca47ae1ea73a42adef.zip
Fix typo that breaks compilation #ifndef __weak_alias; Francois Perrad
Diffstat (limited to 'lib/libc/stdlib/strtoull.c')
-rw-r--r--lib/libc/stdlib/strtoull.c4
1 files changed, 2 insertions, 2 deletions
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