diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-12-27 09:22:38 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-27 09:22:38 -0800 |
commit | fea5aee9cff78b724c7b179c3b49ed42b1526b8f (patch) | |
tree | 08ebec5b7cf3983b6321e2fee884a7e00f267617 /examples | |
parent | a0d2a6b445f33b608019809f581a80d28062178d (diff) | |
parent | 71e42dae909c8e94f82873f9eee0c50f0284fbdd (diff) |
Merge pull request #526 from besser82/bugfix/config_header_avoid_clashes
Further improvements to header files and shared lib version
Diffstat (limited to 'examples')
-rw-r--r-- | examples/support/config.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/support/config.c b/examples/support/config.c index ff63b078..f0efa594 100644 --- a/examples/support/config.c +++ b/examples/support/config.c @@ -7,9 +7,10 @@ #include <string.h> #include <unistd.h> #include <sys/param.h> -#include "config.h" +#include <wlr/config.h> #include <wlr/util/log.h> #include <wlr/types/wlr_box.h> +#include "support/config.h" #include "shared.h" #include "ini.h" |