diff options
author | Rob Landley <rob@landley.net> | 2013-03-11 22:23:46 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-03-11 22:23:46 -0500 |
commit | 25b043bff9de65abc0926c04053f3ba5ea8f30f7 (patch) | |
tree | ac418794a3072c1d8dc99c2ab11c7be902f9ccd0 /lib | |
parent | 364d9ab6aa7fc6fb2b28147dd73d2183b15b45ae (diff) | |
download | toybox-25b043bff9de65abc0926c04053f3ba5ea8f30f7.tar.gz |
Compile time probe to fish O_NOFOLLOW out of linux headers when fcntl doesn't conform to posix-2008.0.4.4
Diffstat (limited to 'lib')
-rw-r--r-- | lib/portability.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/portability.h b/lib/portability.h index feaf7894..745f8cd9 100644 --- a/lib/portability.h +++ b/lib/portability.h @@ -145,3 +145,5 @@ int clearenv(void); ssize_t getdelim(char **lineptr, size_t *n, int delim, FILE *stream); ssize_t getline(char **lineptr, size_t *n, FILE *stream); #endif + +#include "generated/portability.h" |