diff options
author | Christophe Fergeau <cfergeau@redhat.com> | 2014-10-29 17:09:15 +0100 |
---|---|---|
committer | Christophe Fergeau <cfergeau@redhat.com> | 2014-10-30 17:47:16 +0100 |
commit | a577a155c19f50dd1ffaa7d30275a6fab17f6100 (patch) | |
tree | 8bc0fa9cf8c1c34d6e691ddc09548c72ec6177ae /gtk/coroutine_ucontext.c | |
parent | 62a077978b78d8ec49e6f797d418fff567ce4532 (diff) |
Always use #include "config.h"
gnulib 'make syntax-check' prohibits use of #ifdef HAVE_CONFIG_H so this
commit removes it from where it's used. It also makes sure we always use
the same syntax for including config.h (#include "config.h" VS #include
<config.h>) as a consistent way of doing that is expected.
Diffstat (limited to 'gtk/coroutine_ucontext.c')
-rw-r--r-- | gtk/coroutine_ucontext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/coroutine_ucontext.c b/gtk/coroutine_ucontext.c index 46899e7..d709a33 100644 --- a/gtk/coroutine_ucontext.c +++ b/gtk/coroutine_ucontext.c @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include <config.h> +#include "config.h" #include <glib.h> #ifdef HAVE_SYS_TYPES_H |