mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-19 13:40:59 +08:00
Update.
* 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.
This commit is contained in:
parent
dffbec5f51
commit
40cbb1a73b
26
ChangeLog
26
ChangeLog
@ -33,6 +33,32 @@
|
||||
* 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.
|
||||
|
@ -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
|
||||
|
10
sysdeps/wordsize-64/wcstol.c
Normal file
10
sysdeps/wordsize-64/wcstol.c
Normal file
@ -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)
|
10
sysdeps/wordsize-64/wcstol_l.c
Normal file
10
sysdeps/wordsize-64/wcstol_l.c
Normal file
@ -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)
|
1
sysdeps/wordsize-64/wcstoll.c
Normal file
1
sysdeps/wordsize-64/wcstoll.c
Normal file
@ -0,0 +1 @@
|
||||
/* Not needed, it's the same as wcstol. */
|
1
sysdeps/wordsize-64/wcstoll_l.c
Normal file
1
sysdeps/wordsize-64/wcstoll_l.c
Normal file
@ -0,0 +1 @@
|
||||
/* Not needed, it's the same as wcstol_l. */
|
10
sysdeps/wordsize-64/wcstoul.c
Normal file
10
sysdeps/wordsize-64/wcstoul.c
Normal file
@ -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)
|
10
sysdeps/wordsize-64/wcstoul_l.c
Normal file
10
sysdeps/wordsize-64/wcstoul_l.c
Normal file
@ -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)
|
1
sysdeps/wordsize-64/wcstoull.c
Normal file
1
sysdeps/wordsize-64/wcstoull.c
Normal file
@ -0,0 +1 @@
|
||||
/* Not needed, it's the same as wcstoul. */
|
1
sysdeps/wordsize-64/wcstoull_l.c
Normal file
1
sysdeps/wordsize-64/wcstoull_l.c
Normal file
@ -0,0 +1 @@
|
||||
/* Not needed, it's the same as wcstoul_l. */
|
Loading…
x
Reference in New Issue
Block a user