|
|
147e83 |
commit 80d9be8122d1fe181d2476b5dad9f4ce37204958
|
|
|
147e83 |
Author: Joseph Myers <joseph@codesourcery.com>
|
|
|
147e83 |
Date: Tue Oct 20 21:27:22 2015 +0000
|
|
|
147e83 |
|
|
|
147e83 |
Convert miscellaneous function definitions to prototype style.
|
|
|
147e83 |
|
|
|
147e83 |
This patch converts various miscellaneous functions definitions in
|
|
|
147e83 |
glibc, found with grep and not covered by my previous scripted
|
|
|
147e83 |
conversions, from old-style K&R to prototype-style. These changes
|
|
|
147e83 |
were made manually. This is not necessarily exhaustive as formatting
|
|
|
147e83 |
variants may have prevented my grep from finding some such
|
|
|
147e83 |
definitions.
|
|
|
147e83 |
|
|
|
147e83 |
Regarding the changes to files from GMP, they may originally have been
|
|
|
147e83 |
omitted when removing __STDC__ conditionals because of the files
|
|
|
147e83 |
coming from another package, but (a) GMP no longer has __STDC__
|
|
|
147e83 |
conditionals there anyway and (b) we don't try to keep these files
|
|
|
147e83 |
verbatim in sync with GMP (and there are licensing differences), so
|
|
|
147e83 |
making the change to them in glibc seems reasonable.
|
|
|
147e83 |
|
|
|
147e83 |
Tested for x86_64 and x86 (testsuite - this patch affects files
|
|
|
147e83 |
containing assertions).
|
|
|
147e83 |
|
|
|
147e83 |
* debug/fortify_fail.c (__fortify_fail): Convert to
|
|
|
147e83 |
prototype-style function definition. Use internal_function.
|
|
|
147e83 |
* libio/genops.c (save_for_backup): Convert to prototype-style
|
|
|
147e83 |
function definition.
|
|
|
147e83 |
* libio/wgenops.c (save_for_wbackup): Likewise.
|
|
|
147e83 |
* login/grantpt.c (grantpt): Likewise.
|
|
|
147e83 |
* login/ptsname.c (ptsname): Likewise.
|
|
|
147e83 |
(__ptsname_r): Likewise.
|
|
|
147e83 |
* login/unlockpt.c (unlockpt): Likewise.
|
|
|
147e83 |
* mach/msgserver.c (__mach_msg_server): Likewise.
|
|
|
147e83 |
* misc/efgcvt.c (__APPEND (FUNC_PREFIX, fcvt)): Likewise.
|
|
|
147e83 |
(__APPEND (FUNC_PREFIX, ecvt)): Likewise.
|
|
|
147e83 |
(__APPEND (FUNC_PREFIX, gcvt)): Likewise.
|
|
|
147e83 |
* misc/efgcvt_r.c (__APPEND (FUNC_PREFIX, fcvt_r)): Likewise.
|
|
|
147e83 |
(__APPEND (FUNC_PREFIX, ecvt_r)): Likewise.
|
|
|
147e83 |
* nptl/cleanup_compat.c (_pthread_cleanup_push): Likewise.
|
|
|
147e83 |
* nptl/cleanup_defer_compat.c (_pthread_cleanup_push_defer):
|
|
|
147e83 |
Likewise.
|
|
|
147e83 |
* nptl/libc_pthread_init.c (__libc_pthread_init): Likewise. Use
|
|
|
147e83 |
internal_function.
|
|
|
147e83 |
* nptl/pthread_atfork.c (__pthread_atfork): Convert to
|
|
|
147e83 |
prototype-style function definition.
|
|
|
147e83 |
* nptl/pthread_create.c (__pthread_create_2_1): Likewise.
|
|
|
147e83 |
[SHLIB_COMPAT(libpthread, GLIBC_2_0, GLIBC_2_1)]
|
|
|
147e83 |
(__pthread_create_2_0): Likewise.
|
|
|
147e83 |
* nptl/pthread_key_create.c (__pthread_key_create): Likewise.
|
|
|
147e83 |
* nptl/register-atfork.c (__register_atfork): Likewise.
|
|
|
147e83 |
* posix/glob.c (glob): Likewise.
|
|
|
147e83 |
* posix/regcomp.c (re_comp): Likewise.
|
|
|
147e83 |
* posix/regexec.c (re_exec): Likewise.
|
|
|
147e83 |
* stdlib/add_n.c [__STDC__]: Make code unconditional.
|
|
|
147e83 |
[!__STDC__]: Remove conditional code.
|
|
|
147e83 |
* stdlib/cmp.c [__STDC__]: Make code unconditional.
|
|
|
147e83 |
[!__STDC__]: Remove conditional code.
|
|
|
147e83 |
* stdlib/divmod_1.c [__STDC__]: Make code unconditional.
|
|
|
147e83 |
[!__STDC__]: Remove conditional code.
|
|
|
147e83 |
* stdlib/divrem.c [__STDC__]: Make code unconditional.
|
|
|
147e83 |
[!__STDC__]: Remove conditional code.
|
|
|
147e83 |
* stdlib/lshift.c [__STDC__]: Make code unconditional.
|
|
|
147e83 |
[!__STDC__]: Remove conditional code.
|
|
|
147e83 |
* stdlib/mod_1.c [__STDC__]: Make code unconditional.
|
|
|
147e83 |
[!__STDC__]: Remove conditional code.
|
|
|
147e83 |
* stdlib/mul.c [__STDC__]: Make code unconditional.
|
|
|
147e83 |
[!__STDC__]: Remove conditional code.
|
|
|
147e83 |
* stdlib/mul_n.c [__STDC__]: Make code unconditional.
|
|
|
147e83 |
[!__STDC__]: Remove conditional code.
|
|
|
147e83 |
* stdlib/rshift.c [__STDC__]: Make code unconditional.
|
|
|
147e83 |
[!__STDC__]: Remove conditional code.
|
|
|
147e83 |
* stdlib/strtod.c (INTERNAL (STRTOF)): Convert to prototype-style
|
|
|
147e83 |
function definition.
|
|
|
147e83 |
(STRTOF): Likewise.
|
|
|
147e83 |
* stdlib/strtod_l.c (__STRTOF): Likewise.
|
|
|
147e83 |
* stdlib/strtol.c (INTERNAL (strtol)): Likewise.
|
|
|
147e83 |
* stdlib/strtol_l.c (INTERNAL (__strtol_l)): Likewise.
|
|
|
147e83 |
(__strtol_l): Likewise.
|
|
|
147e83 |
* stdlib/sub_n.c [__STDC__]: Make code unconditional.
|
|
|
147e83 |
[!__STDC__]: Remove conditional code.
|
|
|
147e83 |
* string/memrchr.c (MEMRCHR): Convert to prototype-style function
|
|
|
147e83 |
definition.
|
|
|
147e83 |
* string/strcasecmp.c (LOCALE_PARAM_DECL): Remove macro.
|
|
|
147e83 |
[USE_IN_EXTENDED_LOCALE_MODEL] (LOCALE_PARAM): Include argument
|
|
|
147e83 |
type.
|
|
|
147e83 |
(__strcasecmp): Convert to prototype-style function definition.
|
|
|
147e83 |
* string/strncase.c (LOCALE_PARAM_DECL): Remove macro.
|
|
|
147e83 |
[USE_IN_EXTENDED_LOCALE_MODEL] (LOCALE_PARAM): Include argument
|
|
|
147e83 |
type.
|
|
|
147e83 |
(__strncasecmp): Convert to prototype-style function definition.
|
|
|
147e83 |
* sunrpc/pm_getport.c (__libc_rpc_getport): Likewise.
|
|
|
147e83 |
* sunrpc/xdr.c (xdr_union): Likewise.
|
|
|
147e83 |
* sunrpc/xdr_array.c (xdr_array): Likewise.
|
|
|
147e83 |
* sunrpc/xdr_ref.c (xdr_reference): Likewise.
|
|
|
147e83 |
* sysdeps/m68k/m680x0/fpu/s_atan.c (__CONCATX(__,FUNC)): Likewise.
|
|
|
147e83 |
* sysdeps/m68k/m680x0/fpu/s_isinf.c (__CONCATX(__,FUNC)):
|
|
|
147e83 |
Likewise.
|
|
|
147e83 |
* sysdeps/m68k/m680x0/fpu/s_scalbn.c (__CONCATX(__scalbn,suffix):
|
|
|
147e83 |
Likewise.
|
|
|
147e83 |
* sysdeps/m68k/m680x0/fpu/s_sincos.c (CONCATX(__,FUNC)): Likewise.
|
|
|
147e83 |
* sysdeps/unix/sysv/linux/i386/scandir64.c (__old_scandir64):
|
|
|
147e83 |
Likewise.
|
|
|
147e83 |
* time/strftime_l.c (LOCALE_PARAM_DECL): Remove macro.
|
|
|
147e83 |
(LOCALE_PARAM_PROTO): Likewise.
|
|
|
147e83 |
[_LIBC && USE_IN_EXTENDED_LOCALE_MODEL] (LOCALE_PARAM): Include
|
|
|
147e83 |
argument type.
|
|
|
147e83 |
(ut_argument_spec): Remove macro.
|
|
|
147e83 |
(ut_argument_spec_iso): Rename to ut_argument_spec.
|
|
|
147e83 |
(memcpy_lowcase): Use LOCALE_PARAM in declaration. Convert to
|
|
|
147e83 |
prototype-style function definition.
|
|
|
147e83 |
(memcpy_uppcase): Likewise.
|
|
|
147e83 |
(__strftime_internal): Likewise.
|
|
|
147e83 |
(my_strftime): Likewise.
|
|
|
147e83 |
* time/strptime_l.c (LOCALE_PARAM_PROTO): Remove macro.
|
|
|
147e83 |
(LOCALE_PARAM_DECL): Likewise.
|
|
|
147e83 |
[_LIBC] (LOCALE_PARAM): Include argument type.
|
|
|
147e83 |
(__strptime_internal): Convert to prototype-style function
|
|
|
147e83 |
definition.
|
|
|
147e83 |
(strptime): Likewise.
|
|
|
147e83 |
* wcsmbs/wcscasecmp.c (LOCALE_PARAM_DECL): Remove macro.
|
|
|
147e83 |
[USE_IN_EXTENDED_LOCALE_MODEL] (LOCALE_PARAM): Include argument
|
|
|
147e83 |
type.
|
|
|
147e83 |
(__wcscasecmp): Convert to prototype-style function definition.
|
|
|
147e83 |
* wcsmbs/wcsncase.c (LOCALE_PARAM_DECL): Remove macro.
|
|
|
147e83 |
[USE_IN_EXTENDED_LOCALE_MODEL] (LOCALE_PARAM): Include argument
|
|
|
147e83 |
type.
|
|
|
147e83 |
(__wcsncasecmp): Convert to prototype-style function definition.
|
|
|
147e83 |
|
|
|
147e83 |
Conflicts:
|
|
|
147e83 |
nptl/libc_pthread_init.c
|
|
|
147e83 |
(Applied to nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c.)
|
|
|
147e83 |
nptl/register-atfork.c
|
|
|
147e83 |
(Applied to nptl/sysdeps/unix/sysv/linux/register-atfork.c.)
|
|
|
147e83 |
|
|
|
147e83 |
diff --git a/debug/fortify_fail.c b/debug/fortify_fail.c
|
|
|
147e83 |
index c5621ea6b5806603..d76ab3718e7814e4 100644
|
|
|
147e83 |
--- a/debug/fortify_fail.c
|
|
|
147e83 |
+++ b/debug/fortify_fail.c
|
|
|
147e83 |
@@ -22,9 +22,8 @@
|
|
|
147e83 |
extern char **__libc_argv attribute_hidden;
|
|
|
147e83 |
|
|
|
147e83 |
void
|
|
|
147e83 |
-__attribute__ ((noreturn))
|
|
|
147e83 |
-__fortify_fail (msg)
|
|
|
147e83 |
- const char *msg;
|
|
|
147e83 |
+__attribute__ ((noreturn)) internal_function
|
|
|
147e83 |
+__fortify_fail (const char *msg)
|
|
|
147e83 |
{
|
|
|
147e83 |
/* The loop is added only to keep gcc happy. */
|
|
|
147e83 |
while (1)
|
|
|
147e83 |
diff --git a/libio/genops.c b/libio/genops.c
|
|
|
147e83 |
index 09a9c2eacf1fcaea..1362fd15a88130d8 100644
|
|
|
147e83 |
--- a/libio/genops.c
|
|
|
147e83 |
+++ b/libio/genops.c
|
|
|
147e83 |
@@ -244,9 +244,7 @@ static int
|
|
|
147e83 |
#ifdef _LIBC
|
|
|
147e83 |
internal_function
|
|
|
147e83 |
#endif
|
|
|
147e83 |
-save_for_backup (fp, end_p)
|
|
|
147e83 |
- _IO_FILE *fp;
|
|
|
147e83 |
- char *end_p;
|
|
|
147e83 |
+save_for_backup (_IO_FILE *fp, char *end_p)
|
|
|
147e83 |
{
|
|
|
147e83 |
/* Append [_IO_read_base..end_p] to backup area. */
|
|
|
147e83 |
_IO_ssize_t least_mark = _IO_least_marker (fp, end_p);
|
|
|
147e83 |
diff --git a/libio/wgenops.c b/libio/wgenops.c
|
|
|
147e83 |
index 3f34bbc92d8746be..7ec7ae0c0c2c8976 100644
|
|
|
147e83 |
--- a/libio/wgenops.c
|
|
|
147e83 |
+++ b/libio/wgenops.c
|
|
|
147e83 |
@@ -468,9 +468,7 @@ static int
|
|
|
147e83 |
#ifdef _LIBC
|
|
|
147e83 |
internal_function
|
|
|
147e83 |
#endif
|
|
|
147e83 |
-save_for_wbackup (fp, end_p)
|
|
|
147e83 |
- _IO_FILE *fp;
|
|
|
147e83 |
- wchar_t *end_p;
|
|
|
147e83 |
+save_for_wbackup (_IO_FILE *fp, wchar_t *end_p)
|
|
|
147e83 |
{
|
|
|
147e83 |
/* Append [_IO_read_base..end_p] to backup area. */
|
|
|
147e83 |
_IO_ssize_t least_mark = _IO_least_wmarker (fp, end_p);
|
|
|
147e83 |
diff --git a/login/grantpt.c b/login/grantpt.c
|
|
|
147e83 |
index fd7ee6c0bcf2f6b9..62d48b3c489b004f 100644
|
|
|
147e83 |
--- a/login/grantpt.c
|
|
|
147e83 |
+++ b/login/grantpt.c
|
|
|
147e83 |
@@ -23,8 +23,7 @@
|
|
|
147e83 |
with the slave to the calling process, and set its group and
|
|
|
147e83 |
mode appropriately. Note that this is an unprivileged operation. */
|
|
|
147e83 |
int
|
|
|
147e83 |
-grantpt (fd)
|
|
|
147e83 |
- int fd __attribute__ ((unused));
|
|
|
147e83 |
+grantpt (int fd __attribute__ ((unused)))
|
|
|
147e83 |
{
|
|
|
147e83 |
__set_errno (ENOSYS);
|
|
|
147e83 |
return -1;
|
|
|
147e83 |
diff --git a/login/ptsname.c b/login/ptsname.c
|
|
|
147e83 |
index d22ec4136257e1e1..5fe85a938558a0eb 100644
|
|
|
147e83 |
--- a/login/ptsname.c
|
|
|
147e83 |
+++ b/login/ptsname.c
|
|
|
147e83 |
@@ -24,18 +24,16 @@
|
|
|
147e83 |
of the associated slave. */
|
|
|
147e83 |
|
|
|
147e83 |
char *
|
|
|
147e83 |
-ptsname (fd)
|
|
|
147e83 |
- int fd __attribute__ ((unused));
|
|
|
147e83 |
+ptsname (int fd __attribute__ ((unused)))
|
|
|
147e83 |
{
|
|
|
147e83 |
__set_errno (ENOSYS);
|
|
|
147e83 |
return NULL;
|
|
|
147e83 |
}
|
|
|
147e83 |
|
|
|
147e83 |
int
|
|
|
147e83 |
-__ptsname_r (fd, buf, len)
|
|
|
147e83 |
- int fd __attribute__ ((unused));
|
|
|
147e83 |
- char *buf __attribute__ ((unused));
|
|
|
147e83 |
- size_t len __attribute__ ((unused));
|
|
|
147e83 |
+__ptsname_r (int fd __attribute__ ((unused)),
|
|
|
147e83 |
+ char *buf __attribute__ ((unused)),
|
|
|
147e83 |
+ size_t len __attribute__ ((unused)))
|
|
|
147e83 |
{
|
|
|
147e83 |
__set_errno (ENOSYS);
|
|
|
147e83 |
return ENOSYS;
|
|
|
147e83 |
diff --git a/login/unlockpt.c b/login/unlockpt.c
|
|
|
147e83 |
index f00d88f9c1a5d8c4..14057d0fcdd4809c 100644
|
|
|
147e83 |
--- a/login/unlockpt.c
|
|
|
147e83 |
+++ b/login/unlockpt.c
|
|
|
147e83 |
@@ -23,8 +23,7 @@
|
|
|
147e83 |
the slave can be opened. This is to avoid a race between opening the
|
|
|
147e83 |
master and calling grantpt() to take possession of the slave. */
|
|
|
147e83 |
int
|
|
|
147e83 |
-unlockpt (fd)
|
|
|
147e83 |
- int fd __attribute__ ((unused));
|
|
|
147e83 |
+unlockpt (int fd __attribute__ ((unused)))
|
|
|
147e83 |
{
|
|
|
147e83 |
__set_errno (ENOSYS);
|
|
|
147e83 |
return -1;
|
|
|
147e83 |
diff --git a/mach/msgserver.c b/mach/msgserver.c
|
|
|
147e83 |
index b087e7263511b554..d1d90cdee476b2fc 100644
|
|
|
147e83 |
--- a/mach/msgserver.c
|
|
|
147e83 |
+++ b/mach/msgserver.c
|
|
|
147e83 |
@@ -187,10 +187,10 @@ __mach_msg_server_timeout (boolean_t (*demux) (mach_msg_header_t *request,
|
|
|
147e83 |
weak_alias (__mach_msg_server_timeout, mach_msg_server_timeout)
|
|
|
147e83 |
|
|
|
147e83 |
mach_msg_return_t
|
|
|
147e83 |
-__mach_msg_server (demux, max_size, rcv_name)
|
|
|
147e83 |
- boolean_t (*demux) (mach_msg_header_t *in, mach_msg_header_t *out);
|
|
|
147e83 |
- mach_msg_size_t max_size;
|
|
|
147e83 |
- mach_port_t rcv_name;
|
|
|
147e83 |
+__mach_msg_server (boolean_t (*demux) (mach_msg_header_t *in,
|
|
|
147e83 |
+ mach_msg_header_t *out),
|
|
|
147e83 |
+ mach_msg_size_t max_size,
|
|
|
147e83 |
+ mach_port_t rcv_name)
|
|
|
147e83 |
{
|
|
|
147e83 |
return __mach_msg_server_timeout (demux, max_size, rcv_name,
|
|
|
147e83 |
MACH_MSG_OPTION_NONE,
|
|
|
147e83 |
diff --git a/misc/efgcvt.c b/misc/efgcvt.c
|
|
|
147e83 |
index d7d15a1846ce1be4..e1304592dc8f36a9 100644
|
|
|
147e83 |
--- a/misc/efgcvt.c
|
|
|
147e83 |
+++ b/misc/efgcvt.c
|
|
|
147e83 |
@@ -65,9 +65,8 @@ static char ECVT_BUFFER[MAXDIG];
|
|
|
147e83 |
libc_freeres_ptr (static char *FCVT_BUFPTR);
|
|
|
147e83 |
|
|
|
147e83 |
char *
|
|
|
147e83 |
-__APPEND (FUNC_PREFIX, fcvt) (value, ndigit, decpt, sign)
|
|
|
147e83 |
- FLOAT_TYPE value;
|
|
|
147e83 |
- int ndigit, *decpt, *sign;
|
|
|
147e83 |
+__APPEND (FUNC_PREFIX, fcvt) (FLOAT_TYPE value, int ndigit, int *decpt,
|
|
|
147e83 |
+ int *sign)
|
|
|
147e83 |
{
|
|
|
147e83 |
if (FCVT_BUFPTR == NULL)
|
|
|
147e83 |
{
|
|
|
147e83 |
@@ -88,9 +87,8 @@ __APPEND (FUNC_PREFIX, fcvt) (value, ndigit, decpt, sign)
|
|
|
147e83 |
|
|
|
147e83 |
|
|
|
147e83 |
char *
|
|
|
147e83 |
-__APPEND (FUNC_PREFIX, ecvt) (value, ndigit, decpt, sign)
|
|
|
147e83 |
- FLOAT_TYPE value;
|
|
|
147e83 |
- int ndigit, *decpt, *sign;
|
|
|
147e83 |
+__APPEND (FUNC_PREFIX, ecvt) (FLOAT_TYPE value, int ndigit, int *decpt,
|
|
|
147e83 |
+ int *sign)
|
|
|
147e83 |
{
|
|
|
147e83 |
(void) __APPEND (FUNC_PREFIX, ecvt_r) (value, ndigit, decpt, sign,
|
|
|
147e83 |
ECVT_BUFFER, MAXDIG);
|
|
|
147e83 |
@@ -99,10 +97,7 @@ __APPEND (FUNC_PREFIX, ecvt) (value, ndigit, decpt, sign)
|
|
|
147e83 |
}
|
|
|
147e83 |
|
|
|
147e83 |
char *
|
|
|
147e83 |
-__APPEND (FUNC_PREFIX, gcvt) (value, ndigit, buf)
|
|
|
147e83 |
- FLOAT_TYPE value;
|
|
|
147e83 |
- int ndigit;
|
|
|
147e83 |
- char *buf;
|
|
|
147e83 |
+__APPEND (FUNC_PREFIX, gcvt) (FLOAT_TYPE value, int ndigit, char *buf)
|
|
|
147e83 |
{
|
|
|
147e83 |
sprintf (buf, "%.*" FLOAT_FMT_FLAG "g", MIN (ndigit, NDIGIT_MAX), value);
|
|
|
147e83 |
return buf;
|
|
|
147e83 |
diff --git a/misc/efgcvt_r.c b/misc/efgcvt_r.c
|
|
|
147e83 |
index e9f32d673132279d..4cd040fadc008399 100644
|
|
|
147e83 |
--- a/misc/efgcvt_r.c
|
|
|
147e83 |
+++ b/misc/efgcvt_r.c
|
|
|
147e83 |
@@ -72,11 +72,8 @@
|
|
|
147e83 |
|
|
|
147e83 |
|
|
|
147e83 |
int
|
|
|
147e83 |
-__APPEND (FUNC_PREFIX, fcvt_r) (value, ndigit, decpt, sign, buf, len)
|
|
|
147e83 |
- FLOAT_TYPE value;
|
|
|
147e83 |
- int ndigit, *decpt, *sign;
|
|
|
147e83 |
- char *buf;
|
|
|
147e83 |
- size_t len;
|
|
|
147e83 |
+__APPEND (FUNC_PREFIX, fcvt_r) (FLOAT_TYPE value, int ndigit, int *decpt,
|
|
|
147e83 |
+ int *sign, char *buf, size_t len)
|
|
|
147e83 |
{
|
|
|
147e83 |
ssize_t n;
|
|
|
147e83 |
ssize_t i;
|
|
|
147e83 |
@@ -170,11 +167,8 @@ __APPEND (FUNC_PREFIX, fcvt_r) (value, ndigit, decpt, sign, buf, len)
|
|
|
147e83 |
}
|
|
|
147e83 |
|
|
|
147e83 |
int
|
|
|
147e83 |
-__APPEND (FUNC_PREFIX, ecvt_r) (value, ndigit, decpt, sign, buf, len)
|
|
|
147e83 |
- FLOAT_TYPE value;
|
|
|
147e83 |
- int ndigit, *decpt, *sign;
|
|
|
147e83 |
- char *buf;
|
|
|
147e83 |
- size_t len;
|
|
|
147e83 |
+__APPEND (FUNC_PREFIX, ecvt_r) (FLOAT_TYPE value, int ndigit, int *decpt,
|
|
|
147e83 |
+ int *sign, char *buf, size_t len)
|
|
|
147e83 |
{
|
|
|
147e83 |
int exponent = 0;
|
|
|
147e83 |
|
|
|
147e83 |
diff --git a/nptl/cleanup_compat.c b/nptl/cleanup_compat.c
|
|
|
147e83 |
index 67ff5965dd45de61..ba36268f8af78085 100644
|
|
|
147e83 |
--- a/nptl/cleanup_compat.c
|
|
|
147e83 |
+++ b/nptl/cleanup_compat.c
|
|
|
147e83 |
@@ -21,10 +21,8 @@
|
|
|
147e83 |
|
|
|
147e83 |
|
|
|
147e83 |
void
|
|
|
147e83 |
-_pthread_cleanup_push (buffer, routine, arg)
|
|
|
147e83 |
- struct _pthread_cleanup_buffer *buffer;
|
|
|
147e83 |
- void (*routine) (void *);
|
|
|
147e83 |
- void *arg;
|
|
|
147e83 |
+_pthread_cleanup_push (struct _pthread_cleanup_buffer *buffer,
|
|
|
147e83 |
+ void (*routine) (void *), void *arg)
|
|
|
147e83 |
{
|
|
|
147e83 |
struct pthread *self = THREAD_SELF;
|
|
|
147e83 |
|
|
|
147e83 |
diff --git a/nptl/cleanup_defer_compat.c b/nptl/cleanup_defer_compat.c
|
|
|
147e83 |
index e15723611c71d55a..96db28a26be0f7d4 100644
|
|
|
147e83 |
--- a/nptl/cleanup_defer_compat.c
|
|
|
147e83 |
+++ b/nptl/cleanup_defer_compat.c
|
|
|
147e83 |
@@ -20,10 +20,8 @@
|
|
|
147e83 |
|
|
|
147e83 |
|
|
|
147e83 |
void
|
|
|
147e83 |
-_pthread_cleanup_push_defer (buffer, routine, arg)
|
|
|
147e83 |
- struct _pthread_cleanup_buffer *buffer;
|
|
|
147e83 |
- void (*routine) (void *);
|
|
|
147e83 |
- void *arg;
|
|
|
147e83 |
+_pthread_cleanup_push_defer (struct _pthread_cleanup_buffer *buffer,
|
|
|
147e83 |
+ void (*routine) (void *), void *arg)
|
|
|
147e83 |
{
|
|
|
147e83 |
struct pthread *self = THREAD_SELF;
|
|
|
147e83 |
|
|
|
147e83 |
diff --git a/nptl/pthread_atfork.c b/nptl/pthread_atfork.c
|
|
|
147e83 |
index 7da2fd65d227931a..749f417c308c16cc 100644
|
|
|
147e83 |
--- a/nptl/pthread_atfork.c
|
|
|
147e83 |
+++ b/nptl/pthread_atfork.c
|
|
|
147e83 |
@@ -48,10 +48,8 @@ int
|
|
|
147e83 |
/* Don't mark the compatibility function as hidden. */
|
|
|
147e83 |
attribute_hidden
|
|
|
147e83 |
#endif
|
|
|
147e83 |
-__pthread_atfork (prepare, parent, child)
|
|
|
147e83 |
- void (*prepare) (void);
|
|
|
147e83 |
- void (*parent) (void);
|
|
|
147e83 |
- void (*child) (void);
|
|
|
147e83 |
+__pthread_atfork (void (*prepare) (void), void (*parent) (void),
|
|
|
147e83 |
+ void (*child) (void))
|
|
|
147e83 |
{
|
|
|
147e83 |
return __register_atfork (prepare, parent, child,
|
|
|
147e83 |
&__dso_handle == NULL ? NULL : __dso_handle);
|
|
|
147e83 |
diff --git a/nptl/pthread_create.c b/nptl/pthread_create.c
|
|
|
147e83 |
index 987469ba58e7bffa..7cd0003e57f5e759 100644
|
|
|
147e83 |
--- a/nptl/pthread_create.c
|
|
|
147e83 |
+++ b/nptl/pthread_create.c
|
|
|
147e83 |
@@ -432,11 +432,8 @@ start_thread (void *arg)
|
|
|
147e83 |
|
|
|
147e83 |
|
|
|
147e83 |
int
|
|
|
147e83 |
-__pthread_create_2_1 (newthread, attr, start_routine, arg)
|
|
|
147e83 |
- pthread_t *newthread;
|
|
|
147e83 |
- const pthread_attr_t *attr;
|
|
|
147e83 |
- void *(*start_routine) (void *);
|
|
|
147e83 |
- void *arg;
|
|
|
147e83 |
+__pthread_create_2_1 (pthread_t *newthread, const pthread_attr_t *attr,
|
|
|
147e83 |
+ void *(*start_routine) (void *), void *arg)
|
|
|
147e83 |
{
|
|
|
147e83 |
STACK_VARIABLES;
|
|
|
147e83 |
|
|
|
147e83 |
@@ -560,11 +557,8 @@ versioned_symbol (libpthread, __pthread_create_2_1, pthread_create, GLIBC_2_1);
|
|
|
147e83 |
|
|
|
147e83 |
#if SHLIB_COMPAT(libpthread, GLIBC_2_0, GLIBC_2_1)
|
|
|
147e83 |
int
|
|
|
147e83 |
-__pthread_create_2_0 (newthread, attr, start_routine, arg)
|
|
|
147e83 |
- pthread_t *newthread;
|
|
|
147e83 |
- const pthread_attr_t *attr;
|
|
|
147e83 |
- void *(*start_routine) (void *);
|
|
|
147e83 |
- void *arg;
|
|
|
147e83 |
+__pthread_create_2_0 (pthread_t *newthread, const pthread_attr_t *attr,
|
|
|
147e83 |
+ void *(*start_routine) (void *), void *arg)
|
|
|
147e83 |
{
|
|
|
147e83 |
/* The ATTR attribute is not really of type `pthread_attr_t *'. It has
|
|
|
147e83 |
the old size and access to the new members might crash the program.
|
|
|
147e83 |
diff --git a/nptl/pthread_key_create.c b/nptl/pthread_key_create.c
|
|
|
147e83 |
index 96e21ce6d6674b34..2654e6cc8f73fa24 100644
|
|
|
147e83 |
--- a/nptl/pthread_key_create.c
|
|
|
147e83 |
+++ b/nptl/pthread_key_create.c
|
|
|
147e83 |
@@ -22,9 +22,7 @@
|
|
|
147e83 |
|
|
|
147e83 |
|
|
|
147e83 |
int
|
|
|
147e83 |
-__pthread_key_create (key, destr)
|
|
|
147e83 |
- pthread_key_t *key;
|
|
|
147e83 |
- void (*destr) (void *);
|
|
|
147e83 |
+__pthread_key_create (pthread_key_t *key, void (*destr) (void *))
|
|
|
147e83 |
{
|
|
|
147e83 |
/* Find a slot in __pthread_kyes which is unused. */
|
|
|
147e83 |
for (size_t cnt = 0; cnt < PTHREAD_KEYS_MAX; ++cnt)
|
|
|
147e83 |
diff --git a/nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c b/nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c
|
|
|
147e83 |
index adf0819f59c9d1f1..49bd2b47fe2d41cc 100644
|
|
|
147e83 |
--- a/nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c
|
|
|
147e83 |
+++ b/nptl/sysdeps/unix/sysv/linux/libc_pthread_init.c
|
|
|
147e83 |
@@ -35,10 +35,9 @@ extern int __libc_multiple_threads attribute_hidden;
|
|
|
147e83 |
|
|
|
147e83 |
int *
|
|
|
147e83 |
#endif
|
|
|
147e83 |
-__libc_pthread_init (ptr, reclaim, functions)
|
|
|
147e83 |
- unsigned long int *ptr;
|
|
|
147e83 |
- void (*reclaim) (void);
|
|
|
147e83 |
- const struct pthread_functions *functions;
|
|
|
147e83 |
+internal_function
|
|
|
147e83 |
+__libc_pthread_init (unsigned long int *ptr, void (*reclaim) (void),
|
|
|
147e83 |
+ const struct pthread_functions *functions)
|
|
|
147e83 |
{
|
|
|
147e83 |
/* Remember the pointer to the generation counter in libpthread. */
|
|
|
147e83 |
__fork_generation_pointer = ptr;
|
|
|
147e83 |
diff --git a/nptl/sysdeps/unix/sysv/linux/register-atfork.c b/nptl/sysdeps/unix/sysv/linux/register-atfork.c
|
|
|
147e83 |
index 8b5557d89288d9b3..54b950f71c984ee2 100644
|
|
|
147e83 |
--- a/nptl/sysdeps/unix/sysv/linux/register-atfork.c
|
|
|
147e83 |
+++ b/nptl/sysdeps/unix/sysv/linux/register-atfork.c
|
|
|
147e83 |
@@ -78,11 +78,8 @@ fork_handler_alloc (void)
|
|
|
147e83 |
|
|
|
147e83 |
|
|
|
147e83 |
int
|
|
|
147e83 |
-__register_atfork (prepare, parent, child, dso_handle)
|
|
|
147e83 |
- void (*prepare) (void);
|
|
|
147e83 |
- void (*parent) (void);
|
|
|
147e83 |
- void (*child) (void);
|
|
|
147e83 |
- void *dso_handle;
|
|
|
147e83 |
+__register_atfork (void (*prepare) (void), void (*parent) (void),
|
|
|
147e83 |
+ void (*child) (void), void *dso_handle)
|
|
|
147e83 |
{
|
|
|
147e83 |
/* Get the lock to not conflict with other allocations. */
|
|
|
147e83 |
lll_lock (__fork_lock, LLL_PRIVATE);
|
|
|
147e83 |
diff --git a/posix/glob.c b/posix/glob.c
|
|
|
147e83 |
index e3d6fe0f15f7d9ce..01a1f2cba3d1d3da 100644
|
|
|
147e83 |
--- a/posix/glob.c
|
|
|
147e83 |
+++ b/posix/glob.c
|
|
|
147e83 |
@@ -251,11 +251,8 @@ int
|
|
|
147e83 |
#ifdef GLOB_ATTRIBUTE
|
|
|
147e83 |
GLOB_ATTRIBUTE
|
|
|
147e83 |
#endif
|
|
|
147e83 |
-glob (pattern, flags, errfunc, pglob)
|
|
|
147e83 |
- const char *pattern;
|
|
|
147e83 |
- int flags;
|
|
|
147e83 |
- int (*errfunc) (const char *, int);
|
|
|
147e83 |
- glob_t *pglob;
|
|
|
147e83 |
+glob (const char *pattern, int flags, int (*errfunc) (const char *, int),
|
|
|
147e83 |
+ glob_t *pglob)
|
|
|
147e83 |
{
|
|
|
147e83 |
const char *filename;
|
|
|
147e83 |
char *dirname = NULL;
|
|
|
147e83 |
diff --git a/posix/regcomp.c b/posix/regcomp.c
|
|
|
147e83 |
index 80359e58db504ed6..049522f6efbee0c2 100644
|
|
|
147e83 |
--- a/posix/regcomp.c
|
|
|
147e83 |
+++ b/posix/regcomp.c
|
|
|
147e83 |
@@ -656,8 +656,7 @@ char *
|
|
|
147e83 |
regcomp/regexec above without link errors. */
|
|
|
147e83 |
weak_function
|
|
|
147e83 |
# endif
|
|
|
147e83 |
-re_comp (s)
|
|
|
147e83 |
- const char *s;
|
|
|
147e83 |
+re_comp (const char *s)
|
|
|
147e83 |
{
|
|
|
147e83 |
reg_errcode_t ret;
|
|
|
147e83 |
char *fastmap;
|
|
|
147e83 |
diff --git a/posix/regexec.c b/posix/regexec.c
|
|
|
147e83 |
index f315149af88ac6bb..6ca865dc9a7d44d5 100644
|
|
|
147e83 |
--- a/posix/regexec.c
|
|
|
147e83 |
+++ b/posix/regexec.c
|
|
|
147e83 |
@@ -586,8 +586,7 @@ int
|
|
|
147e83 |
# ifdef _LIBC
|
|
|
147e83 |
weak_function
|
|
|
147e83 |
# endif
|
|
|
147e83 |
-re_exec (s)
|
|
|
147e83 |
- const char *s;
|
|
|
147e83 |
+re_exec (const char *s)
|
|
|
147e83 |
{
|
|
|
147e83 |
return 0 == regexec (&re_comp_buf, s, 0, NULL, 0);
|
|
|
147e83 |
}
|
|
|
147e83 |
diff --git a/stdlib/add_n.c b/stdlib/add_n.c
|
|
|
147e83 |
index afb8e09306d7ecc7..fc5a6dbf71c70c7d 100644
|
|
|
147e83 |
--- a/stdlib/add_n.c
|
|
|
147e83 |
+++ b/stdlib/add_n.c
|
|
|
147e83 |
@@ -22,15 +22,7 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, see
|
|
|
147e83 |
#include "gmp-impl.h"
|
|
|
147e83 |
|
|
|
147e83 |
mp_limb_t
|
|
|
147e83 |
-#if __STDC__
|
|
|
147e83 |
mpn_add_n (mp_ptr res_ptr, mp_srcptr s1_ptr, mp_srcptr s2_ptr, mp_size_t size)
|
|
|
147e83 |
-#else
|
|
|
147e83 |
-mpn_add_n (res_ptr, s1_ptr, s2_ptr, size)
|
|
|
147e83 |
- register mp_ptr res_ptr;
|
|
|
147e83 |
- register mp_srcptr s1_ptr;
|
|
|
147e83 |
- register mp_srcptr s2_ptr;
|
|
|
147e83 |
- mp_size_t size;
|
|
|
147e83 |
-#endif
|
|
|
147e83 |
{
|
|
|
147e83 |
register mp_limb_t x, y, cy;
|
|
|
147e83 |
register mp_size_t j;
|
|
|
147e83 |
diff --git a/stdlib/cmp.c b/stdlib/cmp.c
|
|
|
147e83 |
index 003b9aa236cf9d6d..90a41bbf990e14ae 100644
|
|
|
147e83 |
--- a/stdlib/cmp.c
|
|
|
147e83 |
+++ b/stdlib/cmp.c
|
|
|
147e83 |
@@ -27,14 +27,7 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, see
|
|
|
147e83 |
Return 1 if OP1 > OP2, 0 if they are equal, and -1 if OP1 < OP2. */
|
|
|
147e83 |
|
|
|
147e83 |
int
|
|
|
147e83 |
-#if __STDC__
|
|
|
147e83 |
mpn_cmp (mp_srcptr op1_ptr, mp_srcptr op2_ptr, mp_size_t size)
|
|
|
147e83 |
-#else
|
|
|
147e83 |
-mpn_cmp (op1_ptr, op2_ptr, size)
|
|
|
147e83 |
- mp_srcptr op1_ptr;
|
|
|
147e83 |
- mp_srcptr op2_ptr;
|
|
|
147e83 |
- mp_size_t size;
|
|
|
147e83 |
-#endif
|
|
|
147e83 |
{
|
|
|
147e83 |
mp_size_t i;
|
|
|
147e83 |
mp_limb_t op1_word, op2_word;
|
|
|
147e83 |
diff --git a/stdlib/divmod_1.c b/stdlib/divmod_1.c
|
|
|
147e83 |
index 4e6966bc913927a3..275dceff87094b8a 100644
|
|
|
147e83 |
--- a/stdlib/divmod_1.c
|
|
|
147e83 |
+++ b/stdlib/divmod_1.c
|
|
|
147e83 |
@@ -40,17 +40,9 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, see
|
|
|
147e83 |
here (not udiv_qrnnd). */
|
|
|
147e83 |
|
|
|
147e83 |
mp_limb_t
|
|
|
147e83 |
-#if __STDC__
|
|
|
147e83 |
mpn_divmod_1 (mp_ptr quot_ptr,
|
|
|
147e83 |
mp_srcptr dividend_ptr, mp_size_t dividend_size,
|
|
|
147e83 |
mp_limb_t divisor_limb)
|
|
|
147e83 |
-#else
|
|
|
147e83 |
-mpn_divmod_1 (quot_ptr, dividend_ptr, dividend_size, divisor_limb)
|
|
|
147e83 |
- mp_ptr quot_ptr;
|
|
|
147e83 |
- mp_srcptr dividend_ptr;
|
|
|
147e83 |
- mp_size_t dividend_size;
|
|
|
147e83 |
- mp_limb_t divisor_limb;
|
|
|
147e83 |
-#endif
|
|
|
147e83 |
{
|
|
|
147e83 |
mp_size_t i;
|
|
|
147e83 |
mp_limb_t n1, n0, r;
|
|
|
147e83 |
diff --git a/stdlib/divrem.c b/stdlib/divrem.c
|
|
|
147e83 |
index c0abb4d9fbcfc0cf..0c5b2da7df0f6880 100644
|
|
|
147e83 |
--- a/stdlib/divrem.c
|
|
|
147e83 |
+++ b/stdlib/divrem.c
|
|
|
147e83 |
@@ -40,19 +40,9 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, see
|
|
|
147e83 |
3. NSIZE >= DSIZE, even if QEXTRA_LIMBS is non-zero. */
|
|
|
147e83 |
|
|
|
147e83 |
mp_limb_t
|
|
|
147e83 |
-#if __STDC__
|
|
|
147e83 |
mpn_divrem (mp_ptr qp, mp_size_t qextra_limbs,
|
|
|
147e83 |
mp_ptr np, mp_size_t nsize,
|
|
|
147e83 |
mp_srcptr dp, mp_size_t dsize)
|
|
|
147e83 |
-#else
|
|
|
147e83 |
-mpn_divrem (qp, qextra_limbs, np, nsize, dp, dsize)
|
|
|
147e83 |
- mp_ptr qp;
|
|
|
147e83 |
- mp_size_t qextra_limbs;
|
|
|
147e83 |
- mp_ptr np;
|
|
|
147e83 |
- mp_size_t nsize;
|
|
|
147e83 |
- mp_srcptr dp;
|
|
|
147e83 |
- mp_size_t dsize;
|
|
|
147e83 |
-#endif
|
|
|
147e83 |
{
|
|
|
147e83 |
mp_limb_t most_significant_q_limb = 0;
|
|
|
147e83 |
|
|
|
147e83 |
diff --git a/stdlib/lshift.c b/stdlib/lshift.c
|
|
|
147e83 |
index deb264177a5710f8..d2608e06e9113c4a 100644
|
|
|
147e83 |
--- a/stdlib/lshift.c
|
|
|
147e83 |
+++ b/stdlib/lshift.c
|
|
|
147e83 |
@@ -31,17 +31,9 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, see
|
|
|
147e83 |
*/
|
|
|
147e83 |
|
|
|
147e83 |
mp_limb_t
|
|
|
147e83 |
-#if __STDC__
|
|
|
147e83 |
mpn_lshift (register mp_ptr wp,
|
|
|
147e83 |
register mp_srcptr up, mp_size_t usize,
|
|
|
147e83 |
register unsigned int cnt)
|
|
|
147e83 |
-#else
|
|
|
147e83 |
-mpn_lshift (wp, up, usize, cnt)
|
|
|
147e83 |
- register mp_ptr wp;
|
|
|
147e83 |
- register mp_srcptr up;
|
|
|
147e83 |
- mp_size_t usize;
|
|
|
147e83 |
- register unsigned int cnt;
|
|
|
147e83 |
-#endif
|
|
|
147e83 |
{
|
|
|
147e83 |
register mp_limb_t high_limb, low_limb;
|
|
|
147e83 |
register unsigned sh_1, sh_2;
|
|
|
147e83 |
diff --git a/stdlib/mod_1.c b/stdlib/mod_1.c
|
|
|
147e83 |
index d325a931adef007c..72d8ff8110e2c9e2 100644
|
|
|
147e83 |
--- a/stdlib/mod_1.c
|
|
|
147e83 |
+++ b/stdlib/mod_1.c
|
|
|
147e83 |
@@ -37,15 +37,8 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, see
|
|
|
147e83 |
here (not udiv_qrnnd). */
|
|
|
147e83 |
|
|
|
147e83 |
mp_limb_t
|
|
|
147e83 |
-#if __STDC__
|
|
|
147e83 |
mpn_mod_1 (mp_srcptr dividend_ptr, mp_size_t dividend_size,
|
|
|
147e83 |
mp_limb_t divisor_limb)
|
|
|
147e83 |
-#else
|
|
|
147e83 |
-mpn_mod_1 (dividend_ptr, dividend_size, divisor_limb)
|
|
|
147e83 |
- mp_srcptr dividend_ptr;
|
|
|
147e83 |
- mp_size_t dividend_size;
|
|
|
147e83 |
- mp_limb_t divisor_limb;
|
|
|
147e83 |
-#endif
|
|
|
147e83 |
{
|
|
|
147e83 |
mp_size_t i;
|
|
|
147e83 |
mp_limb_t n1, n0, r;
|
|
|
147e83 |
diff --git a/stdlib/mul.c b/stdlib/mul.c
|
|
|
147e83 |
index cab3e2b134080f08..1cb9d73ef96a4559 100644
|
|
|
147e83 |
--- a/stdlib/mul.c
|
|
|
147e83 |
+++ b/stdlib/mul.c
|
|
|
147e83 |
@@ -42,18 +42,9 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, see
|
|
|
147e83 |
#endif
|
|
|
147e83 |
|
|
|
147e83 |
mp_limb_t
|
|
|
147e83 |
-#if __STDC__
|
|
|
147e83 |
mpn_mul (mp_ptr prodp,
|
|
|
147e83 |
mp_srcptr up, mp_size_t usize,
|
|
|
147e83 |
mp_srcptr vp, mp_size_t vsize)
|
|
|
147e83 |
-#else
|
|
|
147e83 |
-mpn_mul (prodp, up, usize, vp, vsize)
|
|
|
147e83 |
- mp_ptr prodp;
|
|
|
147e83 |
- mp_srcptr up;
|
|
|
147e83 |
- mp_size_t usize;
|
|
|
147e83 |
- mp_srcptr vp;
|
|
|
147e83 |
- mp_size_t vsize;
|
|
|
147e83 |
-#endif
|
|
|
147e83 |
{
|
|
|
147e83 |
mp_ptr prod_endp = prodp + usize + vsize - 1;
|
|
|
147e83 |
mp_limb_t cy;
|
|
|
147e83 |
diff --git a/stdlib/mul_n.c b/stdlib/mul_n.c
|
|
|
147e83 |
index 36876c2473e46295..ac2ab42dc887389e 100644
|
|
|
147e83 |
--- a/stdlib/mul_n.c
|
|
|
147e83 |
+++ b/stdlib/mul_n.c
|
|
|
147e83 |
@@ -49,15 +49,7 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, see
|
|
|
147e83 |
algorithm below. */
|
|
|
147e83 |
|
|
|
147e83 |
void
|
|
|
147e83 |
-#if __STDC__
|
|
|
147e83 |
impn_mul_n_basecase (mp_ptr prodp, mp_srcptr up, mp_srcptr vp, mp_size_t size)
|
|
|
147e83 |
-#else
|
|
|
147e83 |
-impn_mul_n_basecase (prodp, up, vp, size)
|
|
|
147e83 |
- mp_ptr prodp;
|
|
|
147e83 |
- mp_srcptr up;
|
|
|
147e83 |
- mp_srcptr vp;
|
|
|
147e83 |
- mp_size_t size;
|
|
|
147e83 |
-#endif
|
|
|
147e83 |
{
|
|
|
147e83 |
mp_size_t i;
|
|
|
147e83 |
mp_limb_t cy_limb;
|
|
|
147e83 |
@@ -100,17 +92,8 @@ impn_mul_n_basecase (prodp, up, vp, size)
|
|
|
147e83 |
}
|
|
|
147e83 |
|
|
|
147e83 |
void
|
|
|
147e83 |
-#if __STDC__
|
|
|
147e83 |
impn_mul_n (mp_ptr prodp,
|
|
|
147e83 |
mp_srcptr up, mp_srcptr vp, mp_size_t size, mp_ptr tspace)
|
|
|
147e83 |
-#else
|
|
|
147e83 |
-impn_mul_n (prodp, up, vp, size, tspace)
|
|
|
147e83 |
- mp_ptr prodp;
|
|
|
147e83 |
- mp_srcptr up;
|
|
|
147e83 |
- mp_srcptr vp;
|
|
|
147e83 |
- mp_size_t size;
|
|
|
147e83 |
- mp_ptr tspace;
|
|
|
147e83 |
-#endif
|
|
|
147e83 |
{
|
|
|
147e83 |
if ((size & 1) != 0)
|
|
|
147e83 |
{
|
|
|
147e83 |
@@ -219,14 +202,7 @@ impn_mul_n (prodp, up, vp, size, tspace)
|
|
|
147e83 |
}
|
|
|
147e83 |
|
|
|
147e83 |
void
|
|
|
147e83 |
-#if __STDC__
|
|
|
147e83 |
impn_sqr_n_basecase (mp_ptr prodp, mp_srcptr up, mp_size_t size)
|
|
|
147e83 |
-#else
|
|
|
147e83 |
-impn_sqr_n_basecase (prodp, up, size)
|
|
|
147e83 |
- mp_ptr prodp;
|
|
|
147e83 |
- mp_srcptr up;
|
|
|
147e83 |
- mp_size_t size;
|
|
|
147e83 |
-#endif
|
|
|
147e83 |
{
|
|
|
147e83 |
mp_size_t i;
|
|
|
147e83 |
mp_limb_t cy_limb;
|
|
|
147e83 |
@@ -269,16 +245,8 @@ impn_sqr_n_basecase (prodp, up, size)
|
|
|
147e83 |
}
|
|
|
147e83 |
|
|
|
147e83 |
void
|
|
|
147e83 |
-#if __STDC__
|
|
|
147e83 |
impn_sqr_n (mp_ptr prodp,
|
|
|
147e83 |
mp_srcptr up, mp_size_t size, mp_ptr tspace)
|
|
|
147e83 |
-#else
|
|
|
147e83 |
-impn_sqr_n (prodp, up, size, tspace)
|
|
|
147e83 |
- mp_ptr prodp;
|
|
|
147e83 |
- mp_srcptr up;
|
|
|
147e83 |
- mp_size_t size;
|
|
|
147e83 |
- mp_ptr tspace;
|
|
|
147e83 |
-#endif
|
|
|
147e83 |
{
|
|
|
147e83 |
if ((size & 1) != 0)
|
|
|
147e83 |
{
|
|
|
147e83 |
@@ -358,15 +326,7 @@ impn_sqr_n (prodp, up, size, tspace)
|
|
|
147e83 |
|
|
|
147e83 |
/* This should be made into an inline function in gmp.h. */
|
|
|
147e83 |
void
|
|
|
147e83 |
-#if __STDC__
|
|
|
147e83 |
mpn_mul_n (mp_ptr prodp, mp_srcptr up, mp_srcptr vp, mp_size_t size)
|
|
|
147e83 |
-#else
|
|
|
147e83 |
-mpn_mul_n (prodp, up, vp, size)
|
|
|
147e83 |
- mp_ptr prodp;
|
|
|
147e83 |
- mp_srcptr up;
|
|
|
147e83 |
- mp_srcptr vp;
|
|
|
147e83 |
- mp_size_t size;
|
|
|
147e83 |
-#endif
|
|
|
147e83 |
{
|
|
|
147e83 |
TMP_DECL (marker);
|
|
|
147e83 |
TMP_MARK (marker);
|
|
|
147e83 |
diff --git a/stdlib/rshift.c b/stdlib/rshift.c
|
|
|
147e83 |
index 13a12be35c673971..96562d474fca72a7 100644
|
|
|
147e83 |
--- a/stdlib/rshift.c
|
|
|
147e83 |
+++ b/stdlib/rshift.c
|
|
|
147e83 |
@@ -31,17 +31,9 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, see
|
|
|
147e83 |
*/
|
|
|
147e83 |
|
|
|
147e83 |
mp_limb_t
|
|
|
147e83 |
-#if __STDC__
|
|
|
147e83 |
mpn_rshift (register mp_ptr wp,
|
|
|
147e83 |
register mp_srcptr up, mp_size_t usize,
|
|
|
147e83 |
register unsigned int cnt)
|
|
|
147e83 |
-#else
|
|
|
147e83 |
-mpn_rshift (wp, up, usize, cnt)
|
|
|
147e83 |
- register mp_ptr wp;
|
|
|
147e83 |
- register mp_srcptr up;
|
|
|
147e83 |
- mp_size_t usize;
|
|
|
147e83 |
- register unsigned int cnt;
|
|
|
147e83 |
-#endif
|
|
|
147e83 |
{
|
|
|
147e83 |
register mp_limb_t high_limb, low_limb;
|
|
|
147e83 |
register unsigned sh_1, sh_2;
|
|
|
147e83 |
diff --git a/stdlib/strtod.c b/stdlib/strtod.c
|
|
|
147e83 |
index 570780cdecbffde0..657d95de82169358 100644
|
|
|
147e83 |
--- a/stdlib/strtod.c
|
|
|
147e83 |
+++ b/stdlib/strtod.c
|
|
|
147e83 |
@@ -46,10 +46,7 @@
|
|
|
147e83 |
|
|
|
147e83 |
|
|
|
147e83 |
FLOAT
|
|
|
147e83 |
-INTERNAL (STRTOF) (nptr, endptr, group)
|
|
|
147e83 |
- const STRING_TYPE *nptr;
|
|
|
147e83 |
- STRING_TYPE **endptr;
|
|
|
147e83 |
- int group;
|
|
|
147e83 |
+INTERNAL (STRTOF) (const STRING_TYPE *nptr, STRING_TYPE **endptr, int group)
|
|
|
147e83 |
{
|
|
|
147e83 |
return INTERNAL(STRTOF_L) (nptr, endptr, group, _NL_CURRENT_LOCALE);
|
|
|
147e83 |
}
|
|
|
147e83 |
@@ -62,9 +59,7 @@ FLOAT
|
|
|
147e83 |
#ifdef weak_function
|
|
|
147e83 |
weak_function
|
|
|
147e83 |
#endif
|
|
|
147e83 |
-STRTOF (nptr, endptr)
|
|
|
147e83 |
- const STRING_TYPE *nptr;
|
|
|
147e83 |
- STRING_TYPE **endptr;
|
|
|
147e83 |
+STRTOF (const STRING_TYPE *nptr, STRING_TYPE **endptr)
|
|
|
147e83 |
{
|
|
|
147e83 |
return INTERNAL(STRTOF_L) (nptr, endptr, 0, _NL_CURRENT_LOCALE);
|
|
|
147e83 |
}
|
|
|
147e83 |
diff --git a/stdlib/strtod_l.c b/stdlib/strtod_l.c
|
|
|
147e83 |
index e5b30d443106ee91..bfbe9b4d96222823 100644
|
|
|
147e83 |
--- a/stdlib/strtod_l.c
|
|
|
147e83 |
+++ b/stdlib/strtod_l.c
|
|
|
147e83 |
@@ -1738,10 +1738,7 @@ FLOAT
|
|
|
147e83 |
#ifdef weak_function
|
|
|
147e83 |
weak_function
|
|
|
147e83 |
#endif
|
|
|
147e83 |
-__STRTOF (nptr, endptr, loc)
|
|
|
147e83 |
- const STRING_TYPE *nptr;
|
|
|
147e83 |
- STRING_TYPE **endptr;
|
|
|
147e83 |
- __locale_t loc;
|
|
|
147e83 |
+__STRTOF (const STRING_TYPE *nptr, STRING_TYPE **endptr, __locale_t loc)
|
|
|
147e83 |
{
|
|
|
147e83 |
return ____STRTOF_INTERNAL (nptr, endptr, 0, loc);
|
|
|
147e83 |
}
|
|
|
147e83 |
diff --git a/stdlib/strtol.c b/stdlib/strtol.c
|
|
|
147e83 |
index 67d758c57973b5d5..68b81ef557a6274c 100644
|
|
|
147e83 |
--- a/stdlib/strtol.c
|
|
|
147e83 |
+++ b/stdlib/strtol.c
|
|
|
147e83 |
@@ -89,11 +89,8 @@ extern INT INTERNAL (__strtol_l) (const STRING_TYPE *, STRING_TYPE **, int,
|
|
|
147e83 |
|
|
|
147e83 |
|
|
|
147e83 |
INT
|
|
|
147e83 |
-INTERNAL (strtol) (nptr, endptr, base, group)
|
|
|
147e83 |
- const STRING_TYPE *nptr;
|
|
|
147e83 |
- STRING_TYPE **endptr;
|
|
|
147e83 |
- int base;
|
|
|
147e83 |
- int group;
|
|
|
147e83 |
+INTERNAL (strtol) (const STRING_TYPE *nptr, STRING_TYPE **endptr,
|
|
|
147e83 |
+ int base, int group)
|
|
|
147e83 |
{
|
|
|
147e83 |
return INTERNAL (__strtol_l) (nptr, endptr, base, group, _NL_CURRENT_LOCALE);
|
|
|
147e83 |
}
|
|
|
147e83 |
diff --git a/stdlib/strtol_l.c b/stdlib/strtol_l.c
|
|
|
147e83 |
index 8174d22f060c2149..3e686acec1484118 100644
|
|
|
147e83 |
--- a/stdlib/strtol_l.c
|
|
|
147e83 |
+++ b/stdlib/strtol_l.c
|
|
|
147e83 |
@@ -222,12 +222,8 @@ extern const unsigned char __strtol_ull_rem_tab[] attribute_hidden;
|
|
|
147e83 |
one converted is stored in *ENDPTR. */
|
|
|
147e83 |
|
|
|
147e83 |
INT
|
|
|
147e83 |
-INTERNAL (__strtol_l) (nptr, endptr, base, group, loc)
|
|
|
147e83 |
- const STRING_TYPE *nptr;
|
|
|
147e83 |
- STRING_TYPE **endptr;
|
|
|
147e83 |
- int base;
|
|
|
147e83 |
- int group;
|
|
|
147e83 |
- __locale_t loc;
|
|
|
147e83 |
+INTERNAL (__strtol_l) (const STRING_TYPE *nptr, STRING_TYPE **endptr,
|
|
|
147e83 |
+ int base, int group, __locale_t loc)
|
|
|
147e83 |
{
|
|
|
147e83 |
int negative;
|
|
|
147e83 |
unsigned LONG int cutoff;
|
|
|
147e83 |
@@ -546,11 +542,8 @@ INT
|
|
|
147e83 |
#ifdef weak_function
|
|
|
147e83 |
weak_function
|
|
|
147e83 |
#endif
|
|
|
147e83 |
-__strtol_l (nptr, endptr, base, loc)
|
|
|
147e83 |
- const STRING_TYPE *nptr;
|
|
|
147e83 |
- STRING_TYPE **endptr;
|
|
|
147e83 |
- int base;
|
|
|
147e83 |
- __locale_t loc;
|
|
|
147e83 |
+__strtol_l (const STRING_TYPE *nptr, STRING_TYPE **endptr,
|
|
|
147e83 |
+ int base, __locale_t loc)
|
|
|
147e83 |
{
|
|
|
147e83 |
return INTERNAL (__strtol_l) (nptr, endptr, base, 0, loc);
|
|
|
147e83 |
}
|
|
|
147e83 |
diff --git a/stdlib/sub_n.c b/stdlib/sub_n.c
|
|
|
147e83 |
index 7e8ca2354554d062..db6928d82df8499d 100644
|
|
|
147e83 |
--- a/stdlib/sub_n.c
|
|
|
147e83 |
+++ b/stdlib/sub_n.c
|
|
|
147e83 |
@@ -22,15 +22,7 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, see
|
|
|
147e83 |
#include "gmp-impl.h"
|
|
|
147e83 |
|
|
|
147e83 |
mp_limb_t
|
|
|
147e83 |
-#if __STDC__
|
|
|
147e83 |
mpn_sub_n (mp_ptr res_ptr, mp_srcptr s1_ptr, mp_srcptr s2_ptr, mp_size_t size)
|
|
|
147e83 |
-#else
|
|
|
147e83 |
-mpn_sub_n (res_ptr, s1_ptr, s2_ptr, size)
|
|
|
147e83 |
- register mp_ptr res_ptr;
|
|
|
147e83 |
- register mp_srcptr s1_ptr;
|
|
|
147e83 |
- register mp_srcptr s2_ptr;
|
|
|
147e83 |
- mp_size_t size;
|
|
|
147e83 |
-#endif
|
|
|
147e83 |
{
|
|
|
147e83 |
register mp_limb_t x, y, cy;
|
|
|
147e83 |
register mp_size_t j;
|
|
|
147e83 |
diff --git a/string/memrchr.c b/string/memrchr.c
|
|
|
147e83 |
index 2826f1305626fb7c..79d19aa18ff5bd3e 100644
|
|
|
147e83 |
--- a/string/memrchr.c
|
|
|
147e83 |
+++ b/string/memrchr.c
|
|
|
147e83 |
@@ -61,10 +61,7 @@ __memrchr
|
|
|
147e83 |
#else
|
|
|
147e83 |
MEMRCHR
|
|
|
147e83 |
#endif
|
|
|
147e83 |
- (s, c_in, n)
|
|
|
147e83 |
- const __ptr_t s;
|
|
|
147e83 |
- int c_in;
|
|
|
147e83 |
- size_t n;
|
|
|
147e83 |
+ (const __ptr_t s, int c_in, size_t n)
|
|
|
147e83 |
{
|
|
|
147e83 |
const unsigned char *char_ptr;
|
|
|
147e83 |
const unsigned long int *longword_ptr;
|
|
|
147e83 |
diff --git a/string/strcasecmp.c b/string/strcasecmp.c
|
|
|
147e83 |
index e7a3c4481b27e954..73581256fc13cbb8 100644
|
|
|
147e83 |
--- a/string/strcasecmp.c
|
|
|
147e83 |
+++ b/string/strcasecmp.c
|
|
|
147e83 |
@@ -35,21 +35,16 @@
|
|
|
147e83 |
#endif
|
|
|
147e83 |
|
|
|
147e83 |
#ifdef USE_IN_EXTENDED_LOCALE_MODEL
|
|
|
147e83 |
-# define LOCALE_PARAM , loc
|
|
|
147e83 |
-# define LOCALE_PARAM_DECL __locale_t loc;
|
|
|
147e83 |
+# define LOCALE_PARAM , __locale_t loc
|
|
|
147e83 |
#else
|
|
|
147e83 |
# define LOCALE_PARAM
|
|
|
147e83 |
-# define LOCALE_PARAM_DECL
|
|
|
147e83 |
#endif
|
|
|
147e83 |
|
|
|
147e83 |
/* Compare S1 and S2, ignoring case, returning less than, equal to or
|
|
|
147e83 |
greater than zero if S1 is lexicographically less than,
|
|
|
147e83 |
equal to or greater than S2. */
|
|
|
147e83 |
int
|
|
|
147e83 |
-__strcasecmp (s1, s2 LOCALE_PARAM)
|
|
|
147e83 |
- const char *s1;
|
|
|
147e83 |
- const char *s2;
|
|
|
147e83 |
- LOCALE_PARAM_DECL
|
|
|
147e83 |
+__strcasecmp (const char *s1, const char *s2 LOCALE_PARAM)
|
|
|
147e83 |
{
|
|
|
147e83 |
#if defined _LIBC && !defined USE_IN_EXTENDED_LOCALE_MODEL
|
|
|
147e83 |
__locale_t loc = _NL_CURRENT_LOCALE;
|
|
|
147e83 |
diff --git a/string/strncase.c b/string/strncase.c
|
|
|
147e83 |
index 02fd51fd40a8ee94..fbd85f3a2329850d 100644
|
|
|
147e83 |
--- a/string/strncase.c
|
|
|
147e83 |
+++ b/string/strncase.c
|
|
|
147e83 |
@@ -36,11 +36,9 @@
|
|
|
147e83 |
#endif
|
|
|
147e83 |
|
|
|
147e83 |
#ifdef USE_IN_EXTENDED_LOCALE_MODEL
|
|
|
147e83 |
-# define LOCALE_PARAM , loc
|
|
|
147e83 |
-# define LOCALE_PARAM_DECL __locale_t loc;
|
|
|
147e83 |
+# define LOCALE_PARAM , __locale_t loc
|
|
|
147e83 |
#else
|
|
|
147e83 |
# define LOCALE_PARAM
|
|
|
147e83 |
-# define LOCALE_PARAM_DECL
|
|
|
147e83 |
#endif
|
|
|
147e83 |
|
|
|
147e83 |
/* Compare no more than N characters of S1 and S2,
|
|
|
147e83 |
@@ -48,11 +46,7 @@
|
|
|
147e83 |
greater than zero if S1 is lexicographically less
|
|
|
147e83 |
than, equal to or greater than S2. */
|
|
|
147e83 |
int
|
|
|
147e83 |
-__strncasecmp (s1, s2, n LOCALE_PARAM)
|
|
|
147e83 |
- const char *s1;
|
|
|
147e83 |
- const char *s2;
|
|
|
147e83 |
- size_t n;
|
|
|
147e83 |
- LOCALE_PARAM_DECL
|
|
|
147e83 |
+__strncasecmp (const char *s1, const char *s2, size_t n LOCALE_PARAM)
|
|
|
147e83 |
{
|
|
|
147e83 |
#if defined _LIBC && !defined USE_IN_EXTENDED_LOCALE_MODEL
|
|
|
147e83 |
__locale_t loc = _NL_CURRENT_LOCALE;
|
|
|
147e83 |
diff --git a/sunrpc/pm_getport.c b/sunrpc/pm_getport.c
|
|
|
147e83 |
index 5c43acc0609d7377..f1fd462e181f7a8b 100644
|
|
|
147e83 |
--- a/sunrpc/pm_getport.c
|
|
|
147e83 |
+++ b/sunrpc/pm_getport.c
|
|
|
147e83 |
@@ -82,14 +82,9 @@ __get_socket (struct sockaddr_in *saddr)
|
|
|
147e83 |
*/
|
|
|
147e83 |
u_short
|
|
|
147e83 |
internal_function
|
|
|
147e83 |
-__libc_rpc_getport (address, program, version, protocol, timeout_sec,
|
|
|
147e83 |
- tottimeout_sec)
|
|
|
147e83 |
- struct sockaddr_in *address;
|
|
|
147e83 |
- u_long program;
|
|
|
147e83 |
- u_long version;
|
|
|
147e83 |
- u_int protocol;
|
|
|
147e83 |
- time_t timeout_sec;
|
|
|
147e83 |
- time_t tottimeout_sec;
|
|
|
147e83 |
+__libc_rpc_getport (struct sockaddr_in *address, u_long program,
|
|
|
147e83 |
+ u_long version, u_int protocol, time_t timeout_sec,
|
|
|
147e83 |
+ time_t tottimeout_sec)
|
|
|
147e83 |
{
|
|
|
147e83 |
const struct timeval timeout = {timeout_sec, 0};
|
|
|
147e83 |
const struct timeval tottimeout = {tottimeout_sec, 0};
|
|
|
147e83 |
diff --git a/sunrpc/xdr.c b/sunrpc/xdr.c
|
|
|
147e83 |
index 9f1f7d417521044d..32dfa0aa1ab1e76a 100644
|
|
|
147e83 |
--- a/sunrpc/xdr.c
|
|
|
147e83 |
+++ b/sunrpc/xdr.c
|
|
|
147e83 |
@@ -674,12 +674,15 @@ libc_hidden_nolink_sunrpc (xdr_netobj, GLIBC_2_0)
|
|
|
147e83 |
* If there is no specific or default routine an error is returned.
|
|
|
147e83 |
*/
|
|
|
147e83 |
bool_t
|
|
|
147e83 |
-xdr_union (xdrs, dscmp, unp, choices, dfault)
|
|
|
147e83 |
- XDR *xdrs;
|
|
|
147e83 |
- enum_t *dscmp; /* enum to decide which arm to work on */
|
|
|
147e83 |
- char *unp; /* the union itself */
|
|
|
147e83 |
- const struct xdr_discrim *choices; /* [value, xdr proc] for each arm */
|
|
|
147e83 |
- xdrproc_t dfault; /* default xdr routine */
|
|
|
147e83 |
+xdr_union (XDR *xdrs,
|
|
|
147e83 |
+ /* enum to decide which arm to work on */
|
|
|
147e83 |
+ enum_t *dscmp,
|
|
|
147e83 |
+ /* the union itself */
|
|
|
147e83 |
+ char *unp,
|
|
|
147e83 |
+ /* [value, xdr proc] for each arm */
|
|
|
147e83 |
+ const struct xdr_discrim *choices,
|
|
|
147e83 |
+ /* default xdr routine */
|
|
|
147e83 |
+ xdrproc_t dfault)
|
|
|
147e83 |
{
|
|
|
147e83 |
enum_t dscm;
|
|
|
147e83 |
|
|
|
147e83 |
diff --git a/sunrpc/xdr_array.c b/sunrpc/xdr_array.c
|
|
|
147e83 |
index fd9d1fb42f744844..99a1d5d24520572f 100644
|
|
|
147e83 |
--- a/sunrpc/xdr_array.c
|
|
|
147e83 |
+++ b/sunrpc/xdr_array.c
|
|
|
147e83 |
@@ -53,13 +53,17 @@
|
|
|
147e83 |
* xdr procedure to call to handle each element of the array.
|
|
|
147e83 |
*/
|
|
|
147e83 |
bool_t
|
|
|
147e83 |
-xdr_array (xdrs, addrp, sizep, maxsize, elsize, elproc)
|
|
|
147e83 |
- XDR *xdrs;
|
|
|
147e83 |
- caddr_t *addrp; /* array pointer */
|
|
|
147e83 |
- u_int *sizep; /* number of elements */
|
|
|
147e83 |
- u_int maxsize; /* max numberof elements */
|
|
|
147e83 |
- u_int elsize; /* size in bytes of each element */
|
|
|
147e83 |
- xdrproc_t elproc; /* xdr routine to handle each element */
|
|
|
147e83 |
+xdr_array (XDR *xdrs,
|
|
|
147e83 |
+ /* array pointer */
|
|
|
147e83 |
+ caddr_t *addrp,
|
|
|
147e83 |
+ /* number of elements */
|
|
|
147e83 |
+ u_int *sizep,
|
|
|
147e83 |
+ /* max numberof elements */
|
|
|
147e83 |
+ u_int maxsize,
|
|
|
147e83 |
+ /* size in bytes of each element */
|
|
|
147e83 |
+ u_int elsize,
|
|
|
147e83 |
+ /* xdr routine to handle each element */
|
|
|
147e83 |
+ xdrproc_t elproc)
|
|
|
147e83 |
{
|
|
|
147e83 |
u_int i;
|
|
|
147e83 |
caddr_t target = *addrp;
|
|
|
147e83 |
diff --git a/sunrpc/xdr_ref.c b/sunrpc/xdr_ref.c
|
|
|
147e83 |
index a7d9264ed6be6fe2..2b7ebc8e11ca4dab 100644
|
|
|
147e83 |
--- a/sunrpc/xdr_ref.c
|
|
|
147e83 |
+++ b/sunrpc/xdr_ref.c
|
|
|
147e83 |
@@ -54,11 +54,13 @@
|
|
|
147e83 |
* proc is the routine to handle the referenced structure.
|
|
|
147e83 |
*/
|
|
|
147e83 |
bool_t
|
|
|
147e83 |
-xdr_reference (xdrs, pp, size, proc)
|
|
|
147e83 |
- XDR *xdrs;
|
|
|
147e83 |
- caddr_t *pp; /* the pointer to work on */
|
|
|
147e83 |
- u_int size; /* size of the object pointed to */
|
|
|
147e83 |
- xdrproc_t proc; /* xdr routine to handle the object */
|
|
|
147e83 |
+xdr_reference (XDR *xdrs,
|
|
|
147e83 |
+ /* the pointer to work on */
|
|
|
147e83 |
+ caddr_t *pp,
|
|
|
147e83 |
+ /* size of the object pointed to */
|
|
|
147e83 |
+ u_int size,
|
|
|
147e83 |
+ /* xdr routine to handle the object */
|
|
|
147e83 |
+ xdrproc_t proc)
|
|
|
147e83 |
{
|
|
|
147e83 |
caddr_t loc = *pp;
|
|
|
147e83 |
bool_t stat;
|
|
|
147e83 |
diff --git a/sysdeps/m68k/m680x0/fpu/s_atan.c b/sysdeps/m68k/m680x0/fpu/s_atan.c
|
|
|
147e83 |
index c7bba83f30a4174d..acb6900d82d5c77d 100644
|
|
|
147e83 |
--- a/sysdeps/m68k/m680x0/fpu/s_atan.c
|
|
|
147e83 |
+++ b/sysdeps/m68k/m680x0/fpu/s_atan.c
|
|
|
147e83 |
@@ -27,8 +27,7 @@
|
|
|
147e83 |
#define __CONCATX(a,b) __CONCAT(a,b)
|
|
|
147e83 |
|
|
|
147e83 |
float_type
|
|
|
147e83 |
-__CONCATX(__,FUNC) (x)
|
|
|
147e83 |
- float_type x;
|
|
|
147e83 |
+__CONCATX(__,FUNC) (float_type x)
|
|
|
147e83 |
{
|
|
|
147e83 |
return __m81_u(__CONCATX(__,FUNC))(x);
|
|
|
147e83 |
}
|
|
|
147e83 |
diff --git a/sysdeps/m68k/m680x0/fpu/s_isinf.c b/sysdeps/m68k/m680x0/fpu/s_isinf.c
|
|
|
147e83 |
index 20872da536619d09..dfb9d99be8f8560c 100644
|
|
|
147e83 |
--- a/sysdeps/m68k/m680x0/fpu/s_isinf.c
|
|
|
147e83 |
+++ b/sysdeps/m68k/m680x0/fpu/s_isinf.c
|
|
|
147e83 |
@@ -27,8 +27,7 @@
|
|
|
147e83 |
#define __CONCATX(a,b) __CONCAT(a,b)
|
|
|
147e83 |
|
|
|
147e83 |
int
|
|
|
147e83 |
-__CONCATX(__,FUNC) (x)
|
|
|
147e83 |
- float_type x;
|
|
|
147e83 |
+__CONCATX(__,FUNC) (float_type x)
|
|
|
147e83 |
{
|
|
|
147e83 |
return __m81_u(__CONCATX(__,FUNC))(x);
|
|
|
147e83 |
}
|
|
|
147e83 |
diff --git a/sysdeps/m68k/m680x0/fpu/s_scalbn.c b/sysdeps/m68k/m680x0/fpu/s_scalbn.c
|
|
|
147e83 |
index ce1b92a22c2107df..8861f7a522cc00f4 100644
|
|
|
147e83 |
--- a/sysdeps/m68k/m680x0/fpu/s_scalbn.c
|
|
|
147e83 |
+++ b/sysdeps/m68k/m680x0/fpu/s_scalbn.c
|
|
|
147e83 |
@@ -39,9 +39,7 @@
|
|
|
147e83 |
#define __CONCATX(a,b) __CONCAT(a,b)
|
|
|
147e83 |
|
|
|
147e83 |
float_type
|
|
|
147e83 |
-__CONCATX(__scalbn,suffix) (x, exp)
|
|
|
147e83 |
- float_type x;
|
|
|
147e83 |
- int exp;
|
|
|
147e83 |
+__CONCATX(__scalbn,suffix) (float_type x, int exp)
|
|
|
147e83 |
{
|
|
|
147e83 |
return __m81_u(__CONCATX(__scalbn,suffix))(x, exp);
|
|
|
147e83 |
}
|
|
|
147e83 |
diff --git a/sysdeps/m68k/m680x0/fpu/s_sincos.c b/sysdeps/m68k/m680x0/fpu/s_sincos.c
|
|
|
147e83 |
index f7a40a3704204240..d2eb192363d6c907 100644
|
|
|
147e83 |
--- a/sysdeps/m68k/m680x0/fpu/s_sincos.c
|
|
|
147e83 |
+++ b/sysdeps/m68k/m680x0/fpu/s_sincos.c
|
|
|
147e83 |
@@ -27,8 +27,7 @@
|
|
|
147e83 |
#define CONCATX(a,b) __CONCAT(a,b)
|
|
|
147e83 |
|
|
|
147e83 |
void
|
|
|
147e83 |
-CONCATX(__,FUNC) (x, sinx, cosx)
|
|
|
147e83 |
- float_type x, *sinx, *cosx;
|
|
|
147e83 |
+CONCATX(__,FUNC) (float_type x, float_type *sinx, float_type *cosx)
|
|
|
147e83 |
{
|
|
|
147e83 |
__m81_u(CONCATX(__,FUNC))(x, sinx, cosx);
|
|
|
147e83 |
}
|
|
|
147e83 |
diff --git a/sysdeps/unix/sysv/linux/i386/scandir64.c b/sysdeps/unix/sysv/linux/i386/scandir64.c
|
|
|
147e83 |
index aca505a320b99473..485c84bee3e09aea 100644
|
|
|
147e83 |
--- a/sysdeps/unix/sysv/linux/i386/scandir64.c
|
|
|
147e83 |
+++ b/sysdeps/unix/sysv/linux/i386/scandir64.c
|
|
|
147e83 |
@@ -39,12 +39,10 @@ versioned_symbol (libc, __scandir64, scandir64, GLIBC_2_2);
|
|
|
147e83 |
# include "olddirent.h"
|
|
|
147e83 |
|
|
|
147e83 |
int
|
|
|
147e83 |
-__old_scandir64 (dir, namelist, select, cmp)
|
|
|
147e83 |
- const char *dir;
|
|
|
147e83 |
- struct __old_dirent64 ***namelist;
|
|
|
147e83 |
- int (*select) (const struct __old_dirent64 *);
|
|
|
147e83 |
- int (*cmp) (const struct __old_dirent64 **,
|
|
|
147e83 |
- const struct __old_dirent64 **);
|
|
|
147e83 |
+__old_scandir64 (const char *dir, struct __old_dirent64 ***namelist,
|
|
|
147e83 |
+ int (*select) (const struct __old_dirent64 *),
|
|
|
147e83 |
+ int (*cmp) (const struct __old_dirent64 **,
|
|
|
147e83 |
+ const struct __old_dirent64 **))
|
|
|
147e83 |
{
|
|
|
147e83 |
DIR *dp = __opendir (dir);
|
|
|
147e83 |
struct __old_dirent64 **v = NULL;
|
|
|
147e83 |
diff --git a/time/strftime_l.c b/time/strftime_l.c
|
|
|
147e83 |
index 0f6ac83d34d43755..a1fe2714d221f4f3 100644
|
|
|
147e83 |
--- a/time/strftime_l.c
|
|
|
147e83 |
+++ b/time/strftime_l.c
|
|
|
147e83 |
@@ -284,16 +284,12 @@ static const CHAR_T zeroes[16] = /* "0000000000000000" */
|
|
|
147e83 |
# undef _NL_CURRENT
|
|
|
147e83 |
# define _NL_CURRENT(category, item) \
|
|
|
147e83 |
(current->values[_NL_ITEM_INDEX (item)].string)
|
|
|
147e83 |
-# define LOCALE_PARAM , loc
|
|
|
147e83 |
+# define LOCALE_PARAM , __locale_t loc
|
|
|
147e83 |
# define LOCALE_ARG , loc
|
|
|
147e83 |
-# define LOCALE_PARAM_DECL __locale_t loc;
|
|
|
147e83 |
-# define LOCALE_PARAM_PROTO , __locale_t loc
|
|
|
147e83 |
# define HELPER_LOCALE_ARG , current
|
|
|
147e83 |
#else
|
|
|
147e83 |
# define LOCALE_PARAM
|
|
|
147e83 |
-# define LOCALE_PARAM_PROTO
|
|
|
147e83 |
# define LOCALE_ARG
|
|
|
147e83 |
-# define LOCALE_PARAM_DECL
|
|
|
147e83 |
# ifdef _LIBC
|
|
|
147e83 |
# define HELPER_LOCALE_ARG , _NL_CURRENT_DATA (LC_TIME)
|
|
|
147e83 |
# else
|
|
|
147e83 |
@@ -330,14 +326,10 @@ static const CHAR_T zeroes[16] = /* "0000000000000000" */
|
|
|
147e83 |
#define ISDIGIT(Ch) ((unsigned int) (Ch) - L_('0') <= 9)
|
|
|
147e83 |
|
|
|
147e83 |
static CHAR_T *memcpy_lowcase (CHAR_T *dest, const CHAR_T *src,
|
|
|
147e83 |
- size_t len LOCALE_PARAM_PROTO) __THROW;
|
|
|
147e83 |
+ size_t len LOCALE_PARAM) __THROW;
|
|
|
147e83 |
|
|
|
147e83 |
static CHAR_T *
|
|
|
147e83 |
-memcpy_lowcase (dest, src, len LOCALE_PARAM)
|
|
|
147e83 |
- CHAR_T *dest;
|
|
|
147e83 |
- const CHAR_T *src;
|
|
|
147e83 |
- size_t len;
|
|
|
147e83 |
- LOCALE_PARAM_DECL
|
|
|
147e83 |
+memcpy_lowcase (CHAR_T *dest, const CHAR_T *src, size_t len LOCALE_PARAM)
|
|
|
147e83 |
{
|
|
|
147e83 |
while (len-- > 0)
|
|
|
147e83 |
dest[len] = TOLOWER ((UCHAR_T) src[len], loc);
|
|
|
147e83 |
@@ -345,14 +337,10 @@ memcpy_lowcase (dest, src, len LOCALE_PARAM)
|
|
|
147e83 |
}
|
|
|
147e83 |
|
|
|
147e83 |
static CHAR_T *memcpy_uppcase (CHAR_T *dest, const CHAR_T *src,
|
|
|
147e83 |
- size_t len LOCALE_PARAM_PROTO) __THROW;
|
|
|
147e83 |
+ size_t len LOCALE_PARAM) __THROW;
|
|
|
147e83 |
|
|
|
147e83 |
static CHAR_T *
|
|
|
147e83 |
-memcpy_uppcase (dest, src, len LOCALE_PARAM)
|
|
|
147e83 |
- CHAR_T *dest;
|
|
|
147e83 |
- const CHAR_T *src;
|
|
|
147e83 |
- size_t len;
|
|
|
147e83 |
- LOCALE_PARAM_DECL
|
|
|
147e83 |
+memcpy_uppcase (CHAR_T *dest, const CHAR_T *src, size_t len LOCALE_PARAM)
|
|
|
147e83 |
{
|
|
|
147e83 |
while (len-- > 0)
|
|
|
147e83 |
dest[len] = TOUPPER ((UCHAR_T) src[len], loc);
|
|
|
147e83 |
@@ -429,8 +417,7 @@ static CHAR_T const month_name[][10] =
|
|
|
147e83 |
#ifdef emacs
|
|
|
147e83 |
# define my_strftime emacs_strftimeu
|
|
|
147e83 |
# define ut_argument , ut
|
|
|
147e83 |
-# define ut_argument_spec int ut;
|
|
|
147e83 |
-# define ut_argument_spec_iso , int ut
|
|
|
147e83 |
+# define ut_argument_spec , int ut
|
|
|
147e83 |
#else
|
|
|
147e83 |
# ifdef COMPILE_WIDE
|
|
|
147e83 |
# define my_strftime wcsftime
|
|
|
147e83 |
@@ -441,15 +428,14 @@ static CHAR_T const month_name[][10] =
|
|
|
147e83 |
# endif
|
|
|
147e83 |
# define ut_argument
|
|
|
147e83 |
# define ut_argument_spec
|
|
|
147e83 |
-# define ut_argument_spec_iso
|
|
|
147e83 |
/* We don't have this information in general. */
|
|
|
147e83 |
# define ut 0
|
|
|
147e83 |
#endif
|
|
|
147e83 |
|
|
|
147e83 |
static size_t __strftime_internal (CHAR_T *, size_t, const CHAR_T *,
|
|
|
147e83 |
const struct tm *, bool *
|
|
|
147e83 |
- ut_argument_spec_iso
|
|
|
147e83 |
- LOCALE_PARAM_PROTO) __THROW;
|
|
|
147e83 |
+ ut_argument_spec
|
|
|
147e83 |
+ LOCALE_PARAM) __THROW;
|
|
|
147e83 |
|
|
|
147e83 |
/* Write information from TP into S according to the format
|
|
|
147e83 |
string FORMAT, writing no more that MAXSIZE characters
|
|
|
147e83 |
@@ -459,13 +445,8 @@ static size_t __strftime_internal (CHAR_T *, size_t, const CHAR_T *,
|
|
|
147e83 |
written, use NULL for S and (size_t) UINT_MAX for MAXSIZE. */
|
|
|
147e83 |
|
|
|
147e83 |
size_t
|
|
|
147e83 |
-my_strftime (s, maxsize, format, tp ut_argument LOCALE_PARAM)
|
|
|
147e83 |
- CHAR_T *s;
|
|
|
147e83 |
- size_t maxsize;
|
|
|
147e83 |
- const CHAR_T *format;
|
|
|
147e83 |
- const struct tm *tp;
|
|
|
147e83 |
- ut_argument_spec
|
|
|
147e83 |
- LOCALE_PARAM_DECL
|
|
|
147e83 |
+my_strftime (CHAR_T *s, size_t maxsize, const CHAR_T *format,
|
|
|
147e83 |
+ const struct tm *tp ut_argument_spec LOCALE_PARAM)
|
|
|
147e83 |
{
|
|
|
147e83 |
#if !defined _LIBC && HAVE_TZNAME && HAVE_TZSET
|
|
|
147e83 |
/* Solaris 2.5 tzset sometimes modifies the storage returned by localtime.
|
|
|
147e83 |
@@ -483,15 +464,9 @@ libc_hidden_def (my_strftime)
|
|
|
147e83 |
#endif
|
|
|
147e83 |
|
|
|
147e83 |
static size_t
|
|
|
147e83 |
-__strftime_internal (s, maxsize, format, tp, tzset_called ut_argument
|
|
|
147e83 |
- LOCALE_PARAM)
|
|
|
147e83 |
- CHAR_T *s;
|
|
|
147e83 |
- size_t maxsize;
|
|
|
147e83 |
- const CHAR_T *format;
|
|
|
147e83 |
- const struct tm *tp;
|
|
|
147e83 |
- bool *tzset_called;
|
|
|
147e83 |
- ut_argument_spec
|
|
|
147e83 |
- LOCALE_PARAM_DECL
|
|
|
147e83 |
+__strftime_internal (CHAR_T *s, size_t maxsize, const CHAR_T *format,
|
|
|
147e83 |
+ const struct tm *tp, bool *tzset_called
|
|
|
147e83 |
+ ut_argument_spec LOCALE_PARAM)
|
|
|
147e83 |
{
|
|
|
147e83 |
#if defined _LIBC && defined USE_IN_EXTENDED_LOCALE_MODEL
|
|
|
147e83 |
struct __locale_data *const current = loc->__locales[LC_TIME];
|
|
|
147e83 |
diff --git a/time/strptime_l.c b/time/strptime_l.c
|
|
|
147e83 |
index cb2b8faa6d740748..7f1efa13374c5eb4 100644
|
|
|
147e83 |
--- a/time/strptime_l.c
|
|
|
147e83 |
+++ b/time/strptime_l.c
|
|
|
147e83 |
@@ -181,17 +181,13 @@ static const unsigned short int __mon_yday[2][13] =
|
|
|
147e83 |
# undef _NL_CURRENT_WORD
|
|
|
147e83 |
# define _NL_CURRENT_WORD(category, item) \
|
|
|
147e83 |
(current->values[_NL_ITEM_INDEX (item)].word)
|
|
|
147e83 |
-# define LOCALE_PARAM , locale
|
|
|
147e83 |
+# define LOCALE_PARAM , __locale_t locale
|
|
|
147e83 |
# define LOCALE_ARG , locale
|
|
|
147e83 |
-# define LOCALE_PARAM_PROTO , __locale_t locale
|
|
|
147e83 |
-# define LOCALE_PARAM_DECL __locale_t locale;
|
|
|
147e83 |
# define HELPER_LOCALE_ARG , current
|
|
|
147e83 |
# define ISSPACE(Ch) __isspace_l (Ch, locale)
|
|
|
147e83 |
#else
|
|
|
147e83 |
# define LOCALE_PARAM
|
|
|
147e83 |
# define LOCALE_ARG
|
|
|
147e83 |
-# define LOCALE_PARAM_DECL
|
|
|
147e83 |
-# define LOCALE_PARAM_PROTO
|
|
|
147e83 |
# define HELPER_LOCALE_ARG
|
|
|
147e83 |
# define ISSPACE(Ch) isspace (Ch)
|
|
|
147e83 |
#endif
|
|
|
147e83 |
@@ -239,12 +235,8 @@ internal_function
|
|
|
147e83 |
#else
|
|
|
147e83 |
static char *
|
|
|
147e83 |
#endif
|
|
|
147e83 |
-__strptime_internal (rp, fmt, tmp, statep LOCALE_PARAM)
|
|
|
147e83 |
- const char *rp;
|
|
|
147e83 |
- const char *fmt;
|
|
|
147e83 |
- struct tm *tmp;
|
|
|
147e83 |
- void *statep;
|
|
|
147e83 |
- LOCALE_PARAM_DECL
|
|
|
147e83 |
+__strptime_internal (const char *rp, const char *fmt, struct tm *tmp,
|
|
|
147e83 |
+ void *statep LOCALE_PARAM)
|
|
|
147e83 |
{
|
|
|
147e83 |
#ifdef _LIBC
|
|
|
147e83 |
struct __locale_data *const current = locale->__locales[LC_TIME];
|
|
|
147e83 |
@@ -1204,11 +1196,7 @@ __strptime_internal (rp, fmt, tmp, statep LOCALE_PARAM)
|
|
|
147e83 |
|
|
|
147e83 |
|
|
|
147e83 |
char *
|
|
|
147e83 |
-strptime (buf, format, tm LOCALE_PARAM)
|
|
|
147e83 |
- const char *buf;
|
|
|
147e83 |
- const char *format;
|
|
|
147e83 |
- struct tm *tm;
|
|
|
147e83 |
- LOCALE_PARAM_DECL
|
|
|
147e83 |
+strptime (const char *buf, const char *format, struct tm *tm LOCALE_PARAM)
|
|
|
147e83 |
{
|
|
|
147e83 |
return __strptime_internal (buf, format, tm, NULL LOCALE_ARG);
|
|
|
147e83 |
}
|
|
|
147e83 |
diff --git a/wcsmbs/wcscasecmp.c b/wcsmbs/wcscasecmp.c
|
|
|
147e83 |
index f970057f504999c8..4943bb5b9b410426 100644
|
|
|
147e83 |
--- a/wcsmbs/wcscasecmp.c
|
|
|
147e83 |
+++ b/wcsmbs/wcscasecmp.c
|
|
|
147e83 |
@@ -35,21 +35,16 @@
|
|
|
147e83 |
#endif
|
|
|
147e83 |
|
|
|
147e83 |
#ifdef USE_IN_EXTENDED_LOCALE_MODEL
|
|
|
147e83 |
-# define LOCALE_PARAM , loc
|
|
|
147e83 |
-# define LOCALE_PARAM_DECL __locale_t loc;
|
|
|
147e83 |
+# define LOCALE_PARAM , __locale_t loc
|
|
|
147e83 |
#else
|
|
|
147e83 |
# define LOCALE_PARAM
|
|
|
147e83 |
-# define LOCALE_PARAM_DECL
|
|
|
147e83 |
#endif
|
|
|
147e83 |
|
|
|
147e83 |
/* Compare S1 and S2, ignoring case, returning less than, equal to or
|
|
|
147e83 |
greater than zero if S1 is lexicographically less than,
|
|
|
147e83 |
equal to or greater than S2. */
|
|
|
147e83 |
int
|
|
|
147e83 |
-__wcscasecmp (s1, s2 LOCALE_PARAM)
|
|
|
147e83 |
- const wchar_t *s1;
|
|
|
147e83 |
- const wchar_t *s2;
|
|
|
147e83 |
- LOCALE_PARAM_DECL
|
|
|
147e83 |
+__wcscasecmp (const wchar_t *s1, const wchar_t *s2 LOCALE_PARAM)
|
|
|
147e83 |
{
|
|
|
147e83 |
wint_t c1, c2;
|
|
|
147e83 |
|
|
|
147e83 |
diff --git a/wcsmbs/wcsncase.c b/wcsmbs/wcsncase.c
|
|
|
147e83 |
index 8b216b48184f793d..3e56ce5d25197a60 100644
|
|
|
147e83 |
--- a/wcsmbs/wcsncase.c
|
|
|
147e83 |
+++ b/wcsmbs/wcsncase.c
|
|
|
147e83 |
@@ -37,11 +37,9 @@
|
|
|
147e83 |
#endif
|
|
|
147e83 |
|
|
|
147e83 |
#ifdef USE_IN_EXTENDED_LOCALE_MODEL
|
|
|
147e83 |
-# define LOCALE_PARAM , loc
|
|
|
147e83 |
-# define LOCALE_PARAM_DECL __locale_t loc;
|
|
|
147e83 |
+# define LOCALE_PARAM , __locale_t loc
|
|
|
147e83 |
#else
|
|
|
147e83 |
# define LOCALE_PARAM
|
|
|
147e83 |
-# define LOCALE_PARAM_DECL
|
|
|
147e83 |
#endif
|
|
|
147e83 |
|
|
|
147e83 |
/* Compare no more than N wide characters of S1 and S2,
|
|
|
147e83 |
@@ -49,11 +47,7 @@
|
|
|
147e83 |
greater than zero if S1 is lexicographically less
|
|
|
147e83 |
than, equal to or greater than S2. */
|
|
|
147e83 |
int
|
|
|
147e83 |
-__wcsncasecmp (s1, s2, n LOCALE_PARAM)
|
|
|
147e83 |
- const wchar_t *s1;
|
|
|
147e83 |
- const wchar_t *s2;
|
|
|
147e83 |
- size_t n;
|
|
|
147e83 |
- LOCALE_PARAM_DECL
|
|
|
147e83 |
+__wcsncasecmp (const wchar_t *s1, const wchar_t *s2, size_t n LOCALE_PARAM)
|
|
|
147e83 |
{
|
|
|
147e83 |
wint_t c1, c2;
|
|
|
147e83 |
|