aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2022-08-24 17:10:48 +0300
committerGitHub <noreply@github.com>2022-08-24 17:10:48 +0300
commite23f5580072cb64ce3ab27de2b5110d7ac252424 (patch)
tree189b8d3269dbb200511608854483b0390b15a0fc
parent7e0453091632fbd9c537d4fc993456683c88df9c (diff)
parent1894366598bd36a66fbfe061380c7a7e971dc3ea (diff)
downloadjansson-e23f5580072cb64ce3ab27de2b5110d7ac252424.zip
jansson-e23f5580072cb64ce3ab27de2b5110d7ac252424.tar.gz
jansson-e23f5580072cb64ce3ab27de2b5110d7ac252424.tar.bz2
Merge pull request #628 from neheb/patch-1
hashtable: change to 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