Merge pull request #628 from neheb/patch-1

hashtable: change to ifdef
This commit is contained in:
Petri Lehtinen 2022-08-24 17:10:48 +03:00 committed by GitHub
commit e23f558007
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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