aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2022-08-22 18:13:57 -0700
committerGitHub <noreply@github.com>2022-08-22 18:13:57 -0700
commit1894366598bd36a66fbfe061380c7a7e971dc3ea (patch)
tree189b8d3269dbb200511608854483b0390b15a0fc
parent7e0453091632fbd9c537d4fc993456683c88df9c (diff)
downloadjansson-1894366598bd36a66fbfe061380c7a7e971dc3ea.zip
jansson-1894366598bd36a66fbfe061380c7a7e971dc3ea.tar.gz
jansson-1894366598bd36a66fbfe061380c7a7e971dc3ea.tar.bz2
hashtable: change to ifdef
All other usages use ifdef.
-rw-r--r--src/hashtable.c4
1 files 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 <jansson_private_config.h>
#endif
#include <stdlib.h>
#include <string.h>
-#if HAVE_STDINT_H
+#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif