Browse Source

just define the macros all the time

Mike Frysinger 19 years ago
parent
commit
91f3e82038
1 changed files with 6 additions and 10 deletions
  1. 6 10
      libc/sysdeps/linux/common/dl-osinfo.h

+ 6 - 10
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