]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 25 May 1999 14:54:29 +0000 (14:54 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 25 May 1999 14:54:29 +0000 (14:54 +0000)
* wcsmbs/wcstol.c: Moved to ...
* sysdeps/generic/wcstol.c: ...here.
* wcsmbs/wcstoul.c: Moved to ...
* sysdeps/generic/wcstoul.c: ...here.
* wcsmbs/wcstoll.c: Moved to ...
* sysdeps/generic/wcstoll.c: ...here.
* wcsmbs/wcstoull.c: Moved to ...
* sysdeps/generic/wcstoull.c: ...here.
* wcsmbs/wcstol_l.c: Moved to ...
* sysdeps/generic/wcstol_l.c: ...here.
* wcsmbs/wcstoul_l.c: Moved to ...
* sysdeps/generic/wcstoul_l.c: ...here.
* wcsmbs/wcstoll_l.c: Moved to ...
* sysdeps/generic/wcstoll_l.c: ...here.
* wcsmbs/wcstoull_l.c: Moved to ...
* sysdeps/generic/wcstoull_l.c: ...here.

* sysdeps/wordexp-64/wcstol.c: New file.
* sysdeps/wordexp-64/wcstoul.c: New file.
* sysdeps/wordexp-64/wcstoll.c: New file.
* sysdeps/wordexp-64/wcstoull.c: New file.
* sysdeps/wordexp-64/wcstol_l.c: New file.
* sysdeps/wordexp-64/wcstoul_l.c: New file.
* sysdeps/wordexp-64/wcstoll_l.c: New file.
* sysdeps/wordexp-64/wcstoull_l.c: New file.

18 files changed:
ChangeLog
stdio-common/vfscanf.c
sysdeps/generic/wcstol.c [moved from wcsmbs/wcstol.c with 100% similarity]
sysdeps/generic/wcstol_l.c [moved from wcsmbs/wcstol_l.c with 100% similarity]
sysdeps/generic/wcstoll.c [moved from wcsmbs/wcstoll.c with 100% similarity]
sysdeps/generic/wcstoll_l.c [moved from wcsmbs/wcstoll_l.c with 100% similarity]
sysdeps/generic/wcstoul.c [moved from wcsmbs/wcstoul.c with 100% similarity]
sysdeps/generic/wcstoul_l.c [moved from wcsmbs/wcstoul_l.c with 100% similarity]
sysdeps/generic/wcstoull.c [moved from wcsmbs/wcstoull.c with 100% similarity]
sysdeps/generic/wcstoull_l.c [moved from wcsmbs/wcstoull_l.c with 100% similarity]
sysdeps/wordsize-64/wcstol.c [new file with mode: 0644]
sysdeps/wordsize-64/wcstol_l.c [new file with mode: 0644]
sysdeps/wordsize-64/wcstoll.c [new file with mode: 0644]
sysdeps/wordsize-64/wcstoll_l.c [new file with mode: 0644]
sysdeps/wordsize-64/wcstoul.c [new file with mode: 0644]
sysdeps/wordsize-64/wcstoul_l.c [new file with mode: 0644]
sysdeps/wordsize-64/wcstoull.c [new file with mode: 0644]
sysdeps/wordsize-64/wcstoull_l.c [new file with mode: 0644]

index 95e74b32afb06c55e34c08b0fdc5907af42eadf6..13bb87acfbde6ce8ff7dda95ee6a07932164e78d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
        * sysdeps/wordexp-64/strtoll_l.c: New file.
        * sysdeps/wordexp-64/strtoull_l.c: New file.
 
+       * wcsmbs/wcstol.c: Moved to ...
+       * sysdeps/generic/wcstol.c: ...here.
+       * wcsmbs/wcstoul.c: Moved to ...
+       * sysdeps/generic/wcstoul.c: ...here.
+       * wcsmbs/wcstoll.c: Moved to ...
+       * sysdeps/generic/wcstoll.c: ...here.
+       * wcsmbs/wcstoull.c: Moved to ...
+       * sysdeps/generic/wcstoull.c: ...here.
+       * wcsmbs/wcstol_l.c: Moved to ...
+       * sysdeps/generic/wcstol_l.c: ...here.
+       * wcsmbs/wcstoul_l.c: Moved to ...
+       * sysdeps/generic/wcstoul_l.c: ...here.
+       * wcsmbs/wcstoll_l.c: Moved to ...
+       * sysdeps/generic/wcstoll_l.c: ...here.
+       * wcsmbs/wcstoull_l.c: Moved to ...
+       * sysdeps/generic/wcstoull_l.c: ...here.
+
+       * sysdeps/wordexp-64/wcstol.c: New file.
+       * sysdeps/wordexp-64/wcstoul.c: New file.
+       * sysdeps/wordexp-64/wcstoll.c: New file.
+       * sysdeps/wordexp-64/wcstoull.c: New file.
+       * sysdeps/wordexp-64/wcstol_l.c: New file.
+       * sysdeps/wordexp-64/wcstoul_l.c: New file.
+       * sysdeps/wordexp-64/wcstoll_l.c: New file.
+       * sysdeps/wordexp-64/wcstoull_l.c: New file.
+
 1999-05-24  Jakub Jelinek  <jj@ultra.linux.cz>
 
        * sysdeps/sparc/bits/wordsize.h: New file.
index 1dbfc53ec9afd9aa0cfab4884fc3b2dc19d9a03d..a5f6f4e4b0ad9e8c1fa35ef4e3aad50487bf5610 100644 (file)
@@ -446,7 +446,7 @@ __vfscanf (FILE *s, const char *format, va_list argptr)
            {
              /* A double `l' is equivalent to an `L'.  */
              ++f;
-             flags |= need_longlong ? LONGDBL | LONG;
+             flags |= need_longlong ? LONGDBL : LONG;
            }
          else
            /* ints are long ints.  */
@@ -455,7 +455,7 @@ __vfscanf (FILE *s, const char *format, va_list argptr)
        case 'q':
        case 'L':
          /* doubles are long doubles, and ints are long long ints.  */
-         flags |= need_longlong ? LONGDBL | LONG;
+         flags |= need_longlong ? LONGDBL : LONG;
          break;
        case 'a':
          /* The `a' is used as a flag only if followed by `s', `S' or
similarity index 100%
rename from wcsmbs/wcstol.c
rename to sysdeps/generic/wcstol.c
similarity index 100%
rename from wcsmbs/wcstol_l.c
rename to sysdeps/generic/wcstol_l.c
similarity index 100%
rename from wcsmbs/wcstoll.c
rename to sysdeps/generic/wcstoll.c
similarity index 100%
rename from wcsmbs/wcstoul.c
rename to sysdeps/generic/wcstoul.c
similarity index 100%
rename from wcsmbs/wcstoull.c
rename to sysdeps/generic/wcstoull.c
diff --git a/sysdeps/wordsize-64/wcstol.c b/sysdeps/wordsize-64/wcstol.c
new file mode 100644 (file)
index 0000000..f7873b7
--- /dev/null
@@ -0,0 +1,10 @@
+/* We have to irritate the compiler a bit.  */
+#define __wcstoll_internal __wcstoll_internal_XXX
+#define wcstoll wcstoll_XXX
+
+#include <sysdeps/generic/wcstol.c>
+
+#undef __wcstoll_internal
+#undef wcstoll
+strong_alias (__wcstol_internal, __wcstoll_internal)
+weak_alias (__wcstoll_internal, wcstoll)
diff --git a/sysdeps/wordsize-64/wcstol_l.c b/sysdeps/wordsize-64/wcstol_l.c
new file mode 100644 (file)
index 0000000..acfd046
--- /dev/null
@@ -0,0 +1,10 @@
+/* We have to irritate the compiler a bit.  */
+#define ____wcstoll_l_internal ____wcstoll_l_internal_XXX
+#define __wcstoll_l __wcstoll_l_XXX
+
+#include <sysdeps/generic/wcstol_l.c>
+
+#undef ____wcstoll_l_internal
+#undef __wcstoll_l
+strong_alias (____wcstol_l_internal, ____wcstoll_l_internal)
+weak_alias (____wcstoll_l_internal, __wcstoll_l)
diff --git a/sysdeps/wordsize-64/wcstoll.c b/sysdeps/wordsize-64/wcstoll.c
new file mode 100644 (file)
index 0000000..476ce3e
--- /dev/null
@@ -0,0 +1 @@
+/* Not needed, it's the same as wcstol.  */
diff --git a/sysdeps/wordsize-64/wcstoll_l.c b/sysdeps/wordsize-64/wcstoll_l.c
new file mode 100644 (file)
index 0000000..e47f636
--- /dev/null
@@ -0,0 +1 @@
+/* Not needed, it's the same as wcstol_l.  */
diff --git a/sysdeps/wordsize-64/wcstoul.c b/sysdeps/wordsize-64/wcstoul.c
new file mode 100644 (file)
index 0000000..235e1e3
--- /dev/null
@@ -0,0 +1,10 @@
+/* We have to irritate the compiler a bit.  */
+#define __wcstoull_internal __wcstoull_internal_XXX
+#define wcstoull wcstoull_XXX
+
+#include <sysdeps/generic/wcstoul.c>
+
+#undef __wcstoull_internal
+#undef wcstoull
+strong_alias (__wcstoul_internal, __wcstoull_internal)
+weak_alias (__wcstoull_internal, wcstoull)
diff --git a/sysdeps/wordsize-64/wcstoul_l.c b/sysdeps/wordsize-64/wcstoul_l.c
new file mode 100644 (file)
index 0000000..24e54df
--- /dev/null
@@ -0,0 +1,10 @@
+/* We have to irritate the compiler a bit.  */
+#define ____wcstoull_l_internal ____wcstoull_l_internal_XXX
+#define __wcstoull_l __wcstoull_l_XXX
+
+#include <sysdeps/generic/wcstoul_l.c>
+
+#undef ____wcstoull_l_internal
+#undef __wcstoull_l
+strong_alias (____wcstoul_l_internal, ____wcstoull_l_internal)
+weak_alias (____wcstoull_l_internal, __wcstoull_l)
diff --git a/sysdeps/wordsize-64/wcstoull.c b/sysdeps/wordsize-64/wcstoull.c
new file mode 100644 (file)
index 0000000..4776c3a
--- /dev/null
@@ -0,0 +1 @@
+/* Not needed, it's the same as wcstoul.  */
diff --git a/sysdeps/wordsize-64/wcstoull_l.c b/sysdeps/wordsize-64/wcstoull_l.c
new file mode 100644 (file)
index 0000000..2c9aaa0
--- /dev/null
@@ -0,0 +1 @@
+/* Not needed, it's the same as wcstoul_l.  */