Skip to content

Commit

Permalink
Merge pull request #628 from neheb/patch-1
Browse files Browse the repository at this point in the history
hashtable: change to ifdef
  • Loading branch information
akheron committed Aug 24, 2022
2 parents 7e04530 + 1894366 commit e23f558
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/hashtable.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit e23f558

Please sign in to comment.