diff --git a/src/datastructures.c b/src/datastructures.c index e94532e..b1e4f75 100644 --- a/src/datastructures.c +++ b/src/datastructures.c @@ -2,7 +2,7 @@ #include "hammer.h" #include "allocator.h" #include -#include +#include #include // {{{ counted arrays diff --git a/src/internal.h b/src/internal.h index 269bc4f..67ecb22 100644 --- a/src/internal.h +++ b/src/internal.h @@ -223,7 +223,7 @@ void h_hashtable_del(HHashTable* ht, void* key); void h_hashtable_free(HHashTable* ht); #if 0 -#include +#include #define h_arena_malloc(a, s) malloc(s) #endif diff --git a/src/pprint.c b/src/pprint.c index 3a8df82..1ffe764 100644 --- a/src/pprint.c +++ b/src/pprint.c @@ -20,7 +20,7 @@ #include #include "hammer.h" #include "internal.h" -#include +#include typedef struct pp_state { int delta; diff --git a/src/system_allocator.c b/src/system_allocator.c index 26e2273..7248fd2 100644 --- a/src/system_allocator.c +++ b/src/system_allocator.c @@ -1,4 +1,4 @@ -#include +#include #include "internal.h" static void* system_alloc(HAllocator *allocator, size_t size) {