diff options
author | 2005-03-02 12:24:26 +0000 | |
---|---|---|
committer | 2005-03-02 12:24:26 +0000 | |
commit | a187eb0ed1eb14bd960a2eca47ae1ea73a42adef (patch) | |
tree | 82669117bbdf2d9f6677a556ef335b69e994baa1 /lib/libc/stdlib/strtoll.c | |
parent | clarify section on packet forwarding; (diff) | |
download | wireguard-openbsd-a187eb0ed1eb14bd960a2eca47ae1ea73a42adef.tar.xz wireguard-openbsd-a187eb0ed1eb14bd960a2eca47ae1ea73a42adef.zip |
Fix typo that breaks compilation #ifndef __weak_alias; Francois Perrad
Diffstat (limited to 'lib/libc/stdlib/strtoll.c')
-rw-r--r-- | lib/libc/stdlib/strtoll.c | 4 |
1 files changed, 2 insertions, 2 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 |