diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-10-16 18:36:31 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-10-16 18:36:31 +0000 |
commit | 4abef27cb7e388aed0027ed2b7d989f1833d5999 (patch) | |
tree | 303a8bf609eb4f35cefbffe9c850075bce7966c8 /sysdeps/generic/dl-sysdep.c | |
parent | 3c6cad26ae5e78d70aa5d5ae743407c5c9c1b9e8 (diff) | |
download | glibc-4abef27cb7e388aed0027ed2b7d989f1833d5999.tar.gz glibc-4abef27cb7e388aed0027ed2b7d989f1833d5999.tar.xz glibc-4abef27cb7e388aed0027ed2b7d989f1833d5999.zip |
Update.
* sysdeps/generic/dl-sysdep.c (DL_FIND_ARG_COMPONENTS): Little cleanup. * timezone/Makefile: Define HAVE_GETTEXT for zdump.c, zic.c,
Diffstat (limited to 'sysdeps/generic/dl-sysdep.c')
-rw-r--r-- | sysdeps/generic/dl-sysdep.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sysdeps/generic/dl-sysdep.c b/sysdeps/generic/dl-sysdep.c index 889a216d4a..4a9ca27182 100644 --- a/sysdeps/generic/dl-sysdep.c +++ b/sysdeps/generic/dl-sysdep.c @@ -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 |