module/i3-common: add missing include

Needed for e.g strncpy() and strcmp()
This commit is contained in:
Daniel Eklöf 2019-02-15 22:06:03 +01:00
parent ae7f554b8c
commit e40b50bf5e

View file

@ -1,6 +1,7 @@
#include "i3-common.h" #include "i3-common.h"
#include <stdlib.h> #include <stdlib.h>
#include <string.h>
#include <unistd.h> #include <unistd.h>
#include <assert.h> #include <assert.h>