Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 25 May 1999 13:26:48 +0000 (13:26 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 25 May 1999 13:26:48 +0000 (13:26 +0000)
1999-05-25  Ulrich Drepper  <drepper@cygnus.com>

* stdlib/strtol.c: Moved to ...
* sysdeps/generic/strtol.c: ...here.
* stdlib/strtoul.c: Moved to ...
* sysdeps/generic/strtoul.c: ...here.
* stdlib/strtoll.c: Moved to ...
* sysdeps/generic/strtoll.c: ...here.
* stdlib/strtoull.c: Moved to ...
* sysdeps/generic/strtoull.c: ...here.
* stdlib/strtol_l.c: Moved to ...
* sysdeps/generic/strtol_l.c: ...here.
* stdlib/strtoul_l.c: Moved to ...
* sysdeps/generic/strtoul_l.c: ...here.
* stdlib/strtoll_l.c: Moved to ...
* sysdeps/generic/strtoll_l.c: ...here.
* stdlib/strtoull_l.c: Moved to ...
* sysdeps/generic/strtoull_l.c: ...here.

* sysdeps/wordexp-64/strtol.c: New file.
* sysdeps/wordexp-64/strtoul.c: New file.
* sysdeps/wordexp-64/strtoll.c: New file.
* sysdeps/wordexp-64/strtoull.c: New file.
* sysdeps/wordexp-64/strtol_l.c: New file.
* sysdeps/wordexp-64/strtoul_l.c: New file.
* sysdeps/wordexp-64/strtoll_l.c: New file.
* sysdeps/wordexp-64/strtoull_l.c: New file.

17 files changed:
ChangeLog
sysdeps/generic/strtol.c [moved from stdlib/strtol.c with 100% similarity]
sysdeps/generic/strtol_l.c [moved from stdlib/strtol_l.c with 100% similarity]
sysdeps/generic/strtoll.c [moved from stdlib/strtoll.c with 100% similarity]
sysdeps/generic/strtoll_l.c [moved from stdlib/strtoll_l.c with 100% similarity]
sysdeps/generic/strtoul.c [moved from stdlib/strtoul.c with 100% similarity]
sysdeps/generic/strtoul_l.c [moved from stdlib/strtoul_l.c with 100% similarity]
sysdeps/generic/strtoull.c [moved from stdlib/strtoull.c with 100% similarity]
sysdeps/generic/strtoull_l.c [moved from stdlib/strtoull_l.c with 100% similarity]
sysdeps/wordsize-64/strtol.c [new file with mode: 0644]
sysdeps/wordsize-64/strtol_l.c [new file with mode: 0644]
sysdeps/wordsize-64/strtoll.c [new file with mode: 0644]
sysdeps/wordsize-64/strtoll_l.c [new file with mode: 0644]
sysdeps/wordsize-64/strtoul.c [new file with mode: 0644]
sysdeps/wordsize-64/strtoul_l.c [new file with mode: 0644]
sysdeps/wordsize-64/strtoull.c [new file with mode: 0644]
sysdeps/wordsize-64/strtoull_l.c [new file with mode: 0644]

index 519671b..a205ae1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,31 @@
+1999-05-25  Ulrich Drepper  <drepper@cygnus.com>
+
+       * stdlib/strtol.c: Moved to ...
+       * sysdeps/generic/strtol.c: ...here.
+       * stdlib/strtoul.c: Moved to ...
+       * sysdeps/generic/strtoul.c: ...here.
+       * stdlib/strtoll.c: Moved to ...
+       * sysdeps/generic/strtoll.c: ...here.
+       * stdlib/strtoull.c: Moved to ...
+       * sysdeps/generic/strtoull.c: ...here.
+       * stdlib/strtol_l.c: Moved to ...
+       * sysdeps/generic/strtol_l.c: ...here.
+       * stdlib/strtoul_l.c: Moved to ...
+       * sysdeps/generic/strtoul_l.c: ...here.
+       * stdlib/strtoll_l.c: Moved to ...
+       * sysdeps/generic/strtoll_l.c: ...here.
+       * stdlib/strtoull_l.c: Moved to ...
+       * sysdeps/generic/strtoull_l.c: ...here.
+
+       * sysdeps/wordexp-64/strtol.c: New file.
+       * sysdeps/wordexp-64/strtoul.c: New file.
+       * sysdeps/wordexp-64/strtoll.c: New file.
+       * sysdeps/wordexp-64/strtoull.c: New file.
+       * sysdeps/wordexp-64/strtol_l.c: New file.
+       * sysdeps/wordexp-64/strtoul_l.c: New file.
+       * sysdeps/wordexp-64/strtoll_l.c: New file.
+       * sysdeps/wordexp-64/strtoull_l.c: New file.
+
 1999-05-24  Jakub Jelinek  <jj@ultra.linux.cz>
 
        * sysdeps/sparc/bits/wordsize.h: New file.
similarity index 100%
rename from stdlib/strtol.c
rename to sysdeps/generic/strtol.c
similarity index 100%
rename from stdlib/strtol_l.c
rename to sysdeps/generic/strtol_l.c
similarity index 100%
rename from stdlib/strtoll.c
rename to sysdeps/generic/strtoll.c
similarity index 100%
rename from stdlib/strtoul.c
rename to sysdeps/generic/strtoul.c
similarity index 100%
rename from stdlib/strtoull.c
rename to sysdeps/generic/strtoull.c
diff --git a/sysdeps/wordsize-64/strtol.c b/sysdeps/wordsize-64/strtol.c
new file mode 100644 (file)
index 0000000..2a18f7a
--- /dev/null
@@ -0,0 +1,10 @@
+/* We have to irritate the compiler a bit.  */
+#define __strtoll_internal __strtoll_internal_XXX
+#define strtoll strtoll_XXX
+
+#include <sysdeps/generic/strtol.c>
+
+#undef __strtoll_internal
+#undef strtoll
+strong_alias (__strtol_internal, __strtoll_internal)
+weak_alias (__strtoll_internal, strtoll)
diff --git a/sysdeps/wordsize-64/strtol_l.c b/sysdeps/wordsize-64/strtol_l.c
new file mode 100644 (file)
index 0000000..a2de024
--- /dev/null
@@ -0,0 +1,10 @@
+/* We have to irritate the compiler a bit.  */
+#define ____strtoll_l_internal ____strtoll_l_internal_XXX
+#define __strtoll_l __strtoll_l_XXX
+
+#include <sysdeps/generic/strtol_l.c>
+
+#undef ____strtoll_l_internal
+#undef __strtoll_l
+strong_alias (____strtol_l_internal, ____strtoll_l_internal)
+weak_alias (____strtoll_l_internal, __strtoll_l)
diff --git a/sysdeps/wordsize-64/strtoll.c b/sysdeps/wordsize-64/strtoll.c
new file mode 100644 (file)
index 0000000..c943e6a
--- /dev/null
@@ -0,0 +1 @@
+/* Not needed, it's the same as strtol.  */
diff --git a/sysdeps/wordsize-64/strtoll_l.c b/sysdeps/wordsize-64/strtoll_l.c
new file mode 100644 (file)
index 0000000..5a5d0d0
--- /dev/null
@@ -0,0 +1 @@
+/* Not needed, it's the same as __strtol_l.  */
diff --git a/sysdeps/wordsize-64/strtoul.c b/sysdeps/wordsize-64/strtoul.c
new file mode 100644 (file)
index 0000000..838474f
--- /dev/null
@@ -0,0 +1,10 @@
+/* We have to irritate the compiler a bit.  */
+#define __strtoull_internal __strtoull_internal_XXX
+#define strtoull strtoull_XXX
+
+#include <sysdeps/generic/strtoul.c>
+
+#undef __strtoull_internal
+#undef strtoull
+strong_alias (__strtoul_internal, __strtoull_internal)
+weak_alias (__strtoull_internal, strtoull)
diff --git a/sysdeps/wordsize-64/strtoul_l.c b/sysdeps/wordsize-64/strtoul_l.c
new file mode 100644 (file)
index 0000000..2997afa
--- /dev/null
@@ -0,0 +1,10 @@
+/* We have to irritate the compiler a bit.  */
+#define ____strtoull_l_internal ____strtoull_l_internal_XXX
+#define __strtoull_l __strtoull_l_XXX
+
+#include <sysdeps/generic/strtoul_l.c>
+
+#undef ____strtoull_l_internal
+#undef __strtoull_l
+strong_alias (____strtoul_l_internal, ____strtoull_l_internal)
+weak_alias (____strtoull_l_internal, __strtoull_l)
diff --git a/sysdeps/wordsize-64/strtoull.c b/sysdeps/wordsize-64/strtoull.c
new file mode 100644 (file)
index 0000000..c472bde
--- /dev/null
@@ -0,0 +1 @@
+/* Not needed, it's the same as strtoul.  */
diff --git a/sysdeps/wordsize-64/strtoull_l.c b/sysdeps/wordsize-64/strtoull_l.c
new file mode 100644 (file)
index 0000000..c33466b
--- /dev/null
@@ -0,0 +1 @@
+/* Not needed, it's the same as __strtoul_l.  */