diff options
author | Glenn Strauss <gstrauss@gluelogic.com> | 2021-07-12 22:39:12 -0400 |
---|---|---|
committer | Glenn Strauss <gstrauss@gluelogic.com> | 2021-09-04 08:08:26 -0400 |
commit | 71931d92387d0dd12dfe719ee123ba8f92bad326 (patch) | |
tree | f45a41bca7911d250b4c8b54c95fdcd9e3bcd8f4 /src/first.h | |
parent | 92576a2f4b5715f9703f483305a490d3710ee489 (diff) | |
download | lighttpd-git-71931d92387d0dd12dfe719ee123ba8f92bad326.tar.gz |
[core] define _DEFAULT_SOURCE in first.h
Diffstat (limited to 'src/first.h')
-rw-r--r-- | src/first.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/first.h b/src/first.h index 85c7b6a3..df747ba4 100644 --- a/src/first.h +++ b/src/first.h @@ -9,6 +9,10 @@ # endif #endif +#ifndef _DEFAULT_SOURCE +#define _DEFAULT_SOURCE +#endif + #ifndef __STDC_WANT_LIB_EXT1__ #define __STDC_WANT_LIB_EXT1__ 1 #endif |