aboutsummaryrefslogtreecommitdiffstats
path: root/src/daemon.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon.h')
-rw-r--r--src/daemon.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/daemon.h b/src/daemon.h
index bd4a7af..f6ebaf0 100644
--- a/src/daemon.h
+++ b/src/daemon.h
@@ -19,6 +19,9 @@
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
+#ifndef _DEFAULT_SOURCE
+# define _DEFAULT_SOURCE
+#endif
#include <stddef.h>
#include <errno.h>
#include <string.h>
@@ -108,7 +111,7 @@ struct job {
/**
* “argv” followed by “envp”.
*/
- char payload[0];
+ char payload[];
};