Bug fix: Add missing header file, unistd.h
Without unistd.h the following functions getuid, alarm and close are implicitly declared causing compilation to fail due to -Werror=implicit-function-declaration
This commit is contained in:
parent
b5818150b9
commit
d3c947676d
|
@ -11,6 +11,7 @@
|
|||
#include <getopt.h>
|
||||
#include <signal.h>
|
||||
#include <stdbool.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "client/window.h"
|
||||
#include "client/registry.h"
|
||||
|
|
Loading…
Reference in a new issue