summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib/strtoll.c
diff options
context:
space:
mode:
authormillert <>2005-03-02 12:24:26 +0000
committermillert <>2005-03-02 12:24:26 +0000
commitc37c75dbbd648a671876a8ff5855121edd41e12b (patch)
tree76bebc4ce496a06ba2af67b222e4862e26e2de27 /src/lib/libc/stdlib/strtoll.c
parent67e61f91527f9a7cd6b9a16b0cd90dd56607d505 (diff)
downloadopenbsd-c37c75dbbd648a671876a8ff5855121edd41e12b.tar.gz
openbsd-c37c75dbbd648a671876a8ff5855121edd41e12b.tar.bz2
openbsd-c37c75dbbd648a671876a8ff5855121edd41e12b.zip
Fix typo that breaks compilation #ifndef __weak_alias; Francois Perrad
Diffstat (limited to 'src/lib/libc/stdlib/strtoll.c')
-rw-r--r--src/lib/libc/stdlib/strtoll.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/stdlib/strtoll.c b/src/lib/libc/stdlib/strtoll.c
index ac9353890f..5002e9ed64 100644
--- a/src/lib/libc/stdlib/strtoll.c
+++ b/src/lib/libc/stdlib/strtoll.c
@@ -28,7 +28,7 @@
28 */ 28 */
29 29
30#if defined(LIBC_SCCS) && !defined(lint) 30#if defined(LIBC_SCCS) && !defined(lint)
31static const char rcsid[] = "$OpenBSD: strtoll.c,v 1.2 2003/06/02 20:18:38 millert Exp $"; 31static const char rcsid[] = "$OpenBSD: strtoll.c,v 1.3 2005/03/02 12:24:26 millert Exp $";
32#endif /* LIBC_SCCS and not lint */ 32#endif /* LIBC_SCCS and not lint */
33 33
34#include <sys/types.h> 34#include <sys/types.h>
@@ -157,6 +157,6 @@ strtoq(nptr, endptr, base)
157 int base; 157 int base;
158{ 158{
159 159
160 return ((quad_t)strtoll(nptr, endptr, base); 160 return ((quad_t)strtoll(nptr, endptr, base));
161} 161}
162#endif 162#endif