diff options
| author | Rich Felker <dalias@aerifal.cx> | 2012-04-03 19:16:51 -0400 | 
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2012-04-03 19:16:51 -0400 | 
| commit | 450f2c4a8515f2c5c9f469082bf69fdef009d26a (patch) | |
| tree | 0b0ff43a85cb2a389e39e02d3038a123bf8ff82f | |
| parent | 4f346b08b33c9265c36fe8a14f5f908b1a9f296a (diff) | |
| download | musl-450f2c4a8515f2c5c9f469082bf69fdef009d26a.tar.gz | |
remove useless (at best, harmful) feature test checks in aio.h
| -rw-r--r-- | include/aio.h | 5 | 
1 files changed, 0 insertions, 5 deletions
| diff --git a/include/aio.h b/include/aio.h index 4cc04909..f28ee369 100644 --- a/include/aio.h +++ b/include/aio.h @@ -5,9 +5,6 @@  extern "C" {  #endif -#if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \ - || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) -  #include <signal.h>  #include <time.h> @@ -51,8 +48,6 @@ int aio_fsync(int, struct aiocb *);  int lio_listio(int, struct aiocb *const [], int, struct sigevent *); -#endif -  #ifdef __cplusplus  }  #endif | 
