diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-08-30 18:05:04 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-08-30 18:05:04 +0200 |
commit | 85757aecfeb54c4fb2a7b200d60999593f6684b8 (patch) | |
tree | cf2ea8104810e14b39d1f21511d4bd8d753ab720 /include | |
parent | move memory allocation functions to malloc.h (diff) | |
download | slibc-85757aecfeb54c4fb2a7b200d60999593f6684b8.tar.gz slibc-85757aecfeb54c4fb2a7b200d60999593f6684b8.tar.bz2 slibc-85757aecfeb54c4fb2a7b200d60999593f6684b8.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/slibc/features.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/slibc/features.h b/include/slibc/features.h index ef56e92..ba91975 100644 --- a/include/slibc/features.h +++ b/include/slibc/features.h @@ -25,7 +25,7 @@ /** * Is C11, or newer, used? */ -#if __STDC_VERSION__ >= 201112L +#if __STDC_VERSION__ >= 201112L || defined(_ISOC11_SOURCE) # define __C11__ #endif |