mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-23 03:10:05 +00:00
Update.
* sysdeps/generic/dl-sysdep.c (DL_FIND_ARG_COMPONENTS): Little cleanup. * timezone/Makefile: Define HAVE_GETTEXT for zdump.c, zic.c,
This commit is contained in:
parent
3c6cad26ae
commit
4abef27cb7
@ -1,5 +1,7 @@
|
||||
2000-10-16 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/generic/dl-sysdep.c (DL_FIND_ARG_COMPONENTS): Little cleanup.
|
||||
|
||||
* sysdeps/i386/fpu/libm-test-ulps: Update for changes in libm-test.inc.
|
||||
|
||||
2000-10-16 Jakub Jelinek <jakub@redhat.com>
|
||||
@ -25,7 +27,7 @@
|
||||
|
||||
2000-10-16 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* timezone/Makefile: Define HAVE_GETTEXT fir zdump.c, zic.c,
|
||||
* timezone/Makefile: Define HAVE_GETTEXT for zdump.c, zic.c,
|
||||
ialloc.c, and scheck.c.
|
||||
* malloc/obstack.c: Always include <libintl.h> for glibc.
|
||||
* posix/getopt.c: Likewise.
|
||||
|
@ -61,14 +61,14 @@ unsigned long int _dl_hwcap_mask = HWCAP_IMPORTANT;
|
||||
|
||||
#ifndef DL_FIND_ARG_COMPONENTS
|
||||
# define DL_FIND_ARG_COMPONENTS(cookie, argc, argv, envp, auxp) \
|
||||
do { \
|
||||
void **_tmp; \
|
||||
(argc) = *(long *) cookie; \
|
||||
(argv) = (char **) cookie + 1; \
|
||||
(envp) = (argv) + (argc) + 1; \
|
||||
for (_tmp = (void **) (envp); *_tmp; ++_tmp) \
|
||||
continue; \
|
||||
(auxp) = (void *) ++_tmp; \
|
||||
do { \
|
||||
void **_tmp; \
|
||||
(argc) = *(long int *) cookie; \
|
||||
(argv) = (char **) ((long int *) cookie + 1); \
|
||||
(envp) = (argv) + (argc) + 1; \
|
||||
for (_tmp = (void **) (envp); *_tmp; ++_tmp) \
|
||||
continue; \
|
||||
(auxp) = (void *) ++_tmp; \
|
||||
} while (0)
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user