diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-05-22 22:12:10 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-05-22 22:12:10 -0400 |
commit | 030b452b8d6c95be6b6de661aed96e8379d1a80e (patch) | |
tree | 502c8949e763e6962cfd884391645d07daf5b1cf /arch/arm/bits/limits.h | |
parent | 96601e3c617bb2122265419f0895730ed794f5af (diff) | |
download | musl-030b452b8d6c95be6b6de661aed96e8379d1a80e.tar.gz |
fix missing _BSD_SOURCE support in bits/*.h
this is actually rather ugly, and would get even uglier if we ever
want to support further feature test macros. at some point i may
factor the bits headers into separate files for C base, POSIX base,
and nonstandard extensions (the only distinctions that seem to matter
now) and then the logic for which to include can go in the main header
rather than being duplicated for each arch. the downside of this is
that it would result in more files having to be opened during
compilation, so as long as the ugliness does not grow, i'm inclined to
leave it alone for now.
Diffstat (limited to 'arch/arm/bits/limits.h')
-rw-r--r-- | arch/arm/bits/limits.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/bits/limits.h b/arch/arm/bits/limits.h index e19461df..65a3dd64 100644 --- a/arch/arm/bits/limits.h +++ b/arch/arm/bits/limits.h @@ -1,5 +1,5 @@ #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \ - || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) + || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE) #define PAGE_SIZE 4096 #define LONG_BIT 32 #endif |