diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-04-18 12:22:24 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-04-18 12:22:24 -0400 |
commit | ba6a9e7734aaff8f4e7d49b888f9dd1954bc92b1 (patch) | |
tree | 28ef639c9b7db5e76820f114697b71dda08de201 /src | |
parent | ed0e3a357e5a5aef394b0b94d13c3a5c078f67f2 (diff) | |
download | musl-ba6a9e7734aaff8f4e7d49b888f9dd1954bc92b1.tar.gz musl-ba6a9e7734aaff8f4e7d49b888f9dd1954bc92b1.tar.xz musl-ba6a9e7734aaff8f4e7d49b888f9dd1954bc92b1.zip |
legacy junk compatibility grab-bag
- add the rest of the junk traditionally in sys/param.h - add prototypes for some nonstandard functions - add _GNU_SOURCE to their source files so the compiler can check proto
Diffstat (limited to 'src')
-rw-r--r-- | src/linux/daemon.c | 1 | ||||
-rw-r--r-- | src/termios/cfmakeraw.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/linux/daemon.c b/src/linux/daemon.c index afb8019f..1568b1dc 100644 --- a/src/linux/daemon.c +++ b/src/linux/daemon.c @@ -1,3 +1,4 @@ +#define _GNU_SOURCE #include <fcntl.h> #include <unistd.h> diff --git a/src/termios/cfmakeraw.c b/src/termios/cfmakeraw.c index a3daa09a..c9dddc12 100644 --- a/src/termios/cfmakeraw.c +++ b/src/termios/cfmakeraw.c @@ -1,3 +1,4 @@ +#define _GNU_SOURCE #include <termios.h> void cfmakeraw(struct termios *t) |