Merge pull request #2417 from marienz/swaynag-includes

Add missing stdlib.h includes to swaynag
This commit is contained in:
Ryan Dwyer 2018-08-03 19:58:42 +10:00 committed by GitHub
commit 3e2bf7f3a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -1,4 +1,5 @@
#define _XOPEN_SOURCE 500
#include <stdlib.h>
#include <signal.h>
#include "log.h"
#include "list.h"

View File

@ -1,4 +1,5 @@
#define _XOPEN_SOURCE 500
#include <stdlib.h>
#include <assert.h>
#include <sys/stat.h>
#include <sys/wait.h>