summaryrefslogtreecommitdiff
path: root/include/mimalloc-internal.h
diff options
context:
space:
mode:
authorDaan <daan@microsoft.com>2021-10-19 09:35:40 -0700
committerGitHub <noreply@github.com>2021-10-19 09:35:40 -0700
commit1917fbd847ba8b23109379846428ef710e2e1c44 (patch)
tree58136cf93f70bc68c934120ef6f34df46a9f2876 /include/mimalloc-internal.h
parentd49b3a95a291a954aae01e61b08c6414cccd39f0 (diff)
parent7c73e3996d5d729c1baec2e833985166a3f5db2e (diff)
Merge pull request #467 from tiran/strict_prototypes
Fix strict function prototype warnings
Diffstat (limited to 'include/mimalloc-internal.h')
-rw-r--r--include/mimalloc-internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mimalloc-internal.h b/include/mimalloc-internal.h
index 73aa236..eef68a3 100644
--- a/include/mimalloc-internal.h
+++ b/include/mimalloc-internal.h
@@ -57,7 +57,7 @@ static inline uintptr_t _mi_random_shuffle(uintptr_t x);
extern mi_decl_cache_align mi_stats_t _mi_stats_main;
extern mi_decl_cache_align const mi_page_t _mi_page_empty;
bool _mi_is_main_thread(void);
-bool _mi_preloading(); // true while the C runtime is not ready
+bool _mi_preloading(void); // true while the C runtime is not ready
// os.c
size_t _mi_os_page_size(void);