From e22356e7fa43cc9b7f7acd6f612b75950200efe6 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sat, 23 Apr 2016 20:47:46 +0200 Subject: [PATCH] src/aubio_priv.h: use #ifdef HAVE_, not #if HAVE_ --- src/aubio_priv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/aubio_priv.h b/src/aubio_priv.h index 8f55260f..f3562cc8 100644 --- a/src/aubio_priv.h +++ b/src/aubio_priv.h @@ -35,11 +35,11 @@ #include "config.h" -#if HAVE_STDLIB_H +#ifdef HAVE_STDLIB_H #include #endif -#if HAVE_STDIO_H +#ifdef HAVE_STDIO_H #include #endif -- 2.11.0