diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-01-08 08:51:33 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-01-08 08:51:33 +0000 |
commit | 91f3e82038ed8c864242d741b1a74575392f14dd (patch) | |
tree | 4b471c3d016554c52977d69a73c98a14f6eacbcd /libc/sysdeps | |
parent | 3be78b425716a8b85efe4413686784c6e8353e43 (diff) |
just define the macros all the time
Diffstat (limited to 'libc/sysdeps')
-rw-r--r-- | libc/sysdeps/linux/common/dl-osinfo.h | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/libc/sysdeps/linux/common/dl-osinfo.h b/libc/sysdeps/linux/common/dl-osinfo.h index ffb754321..b4108cc53 100644 --- a/libc/sysdeps/linux/common/dl-osinfo.h +++ b/libc/sysdeps/linux/common/dl-osinfo.h @@ -22,18 +22,14 @@ # include <sys/time.h> # ifdef IS_IN_libc -# ifndef __SSP_QUICK_CANARY__ -# define OPEN __open -# define READ __read -# define CLOSE __close -# endif +# define OPEN __open +# define READ __read +# define CLOSE __close # define GETTIMEOFDAY gettimeofday # else -# ifndef __SSP_QUICK_CANARY__ -# define OPEN _dl_open -# define READ _dl_read -# define CLOSE _dl_close -# endif +# define OPEN _dl_open +# define READ _dl_read +# define CLOSE _dl_close # define GETTIMEOFDAY _dl_gettimeofday # endif |