Use #if instead of #ifdef for WLR_HAS_*

This commit is contained in:
emersion 2018-11-12 22:23:06 +01:00
parent 3b8d4a9212
commit 2afd930914
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48
4 changed files with 14 additions and 22 deletions

View file

@ -1,12 +1,7 @@
#ifndef _SWAY_STRINGOP_H
#define _SWAY_STRINGOP_H
#include <stdlib.h>
#include "list.h"
#if !HAVE_DECL_SETENV
// Not sure why we need to provide this
extern int setenv(const char *, const char *, int);
#endif
#include "list.h"
// array of whitespace characters to use for delims
extern const char whitespace[];