about summary refs log tree commit diff
path: root/include/inttypes.h
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-09-08 17:14:52 -0400
committerRich Felker <dalias@aerifal.cx>2012-09-08 17:14:52 -0400
commit455f96857f91d14e193219ca00969354a981c09c (patch)
tree82c387b652bbc5492693be147a904bf98d69954a /include/inttypes.h
parentb7afd7a7ec95fdc98dd31078891a9563d6f4ac73 (diff)
downloadmusl-455f96857f91d14e193219ca00969354a981c09c.tar.gz
musl-455f96857f91d14e193219ca00969354a981c09c.tar.xz
musl-455f96857f91d14e193219ca00969354a981c09c.zip
remove all remaining redundant __restrict/__inline/_Noreturn defs
Diffstat (limited to 'include/inttypes.h')
-rw-r--r--include/inttypes.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/inttypes.h b/include/inttypes.h
index 23acc5be..3f0339ce 100644
--- a/include/inttypes.h
+++ b/include/inttypes.h
@@ -5,17 +5,12 @@
 extern "C" {
 #endif
 
+#include <features.h>
 #include <stdint.h>
 
 #define __NEED_wchar_t
 #include <bits/alltypes.h>
 
-#if __STDC_VERSION__ >= 199901L
-#define __restrict restrict
-#elif !defined(__GNUC__)
-#define __restrict
-#endif
-
 typedef struct { intmax_t quot, rem; } imaxdiv_t;
 
 intmax_t imaxabs(intmax_t);