]> git.saurik.com Git - apple/libc.git/blobdiff - stdlib/FreeBSD/strtoq.c.patch
Libc-825.24.tar.gz
[apple/libc.git] / stdlib / FreeBSD / strtoq.c.patch
diff --git a/stdlib/FreeBSD/strtoq.c.patch b/stdlib/FreeBSD/strtoq.c.patch
deleted file mode 100644 (file)
index b5a517d..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
---- strtoq.c.bsdnew    2009-11-13 14:11:51.000000000 -0800
-+++ strtoq.c   2009-11-13 14:11:51.000000000 -0800
-@@ -33,6 +33,8 @@ static char sccsid[] = "@(#)strtoq.c 8.1
- #include <sys/cdefs.h>
- __FBSDID("$FreeBSD: src/lib/libc/stdlib/strtoq.c,v 1.12 2007/01/09 00:28:10 imp Exp $");
-+#include "xlocale_private.h"
-+
- #include <sys/types.h>
- #include <stdlib.h>
-@@ -44,5 +46,13 @@ quad_t
- strtoq(const char *nptr, char **endptr, int base)
- {
--      return strtoll(nptr, endptr, base);
-+      return strtoll_l(nptr, endptr, base, __current_locale());
-+}
-+
-+quad_t
-+strtoq_l(const char *nptr, char **endptr, int base, locale_t loc)
-+{
-+
-+      /* no need to call NORMALIZE_LOCALE(loc) because strtoll_l will */
-+      return strtoll_l(nptr, endptr, base, loc);
- }