From 1894366598bd36a66fbfe061380c7a7e971dc3ea Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Mon, 22 Aug 2022 18:13:57 -0700 Subject: hashtable: change to ifdef All other usages use ifdef. --- src/hashtable.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hashtable.c b/src/hashtable.c index 1508d74..5e97f85 100644 --- a/src/hashtable.c +++ b/src/hashtable.c @@ -5,14 +5,14 @@ * it under the terms of the MIT license. See LICENSE for details. */ -#if HAVE_CONFIG_H +#ifdef HAVE_CONFIG_H #include #endif #include #include -#if HAVE_STDINT_H +#ifdef HAVE_STDINT_H #include #endif -- cgit v1.1