Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions include/mimalloc/atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ terms of the MIT license. A copy of the license can be found in the file
#else
// Use C11 atomics
#include <stdatomic.h>
#include <stdbool.h> // bool
#define mi_atomic(name) atomic_##name
#define mi_memory_order(name) memory_order_##name
#if (__STDC_VERSION__ >= 201710L) // c17, see issue #735
Expand Down
1 change: 1 addition & 0 deletions include/mimalloc/prim.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ terms of the MIT license. A copy of the license can be found in the file
#pragma once
#ifndef MIMALLOC_PRIM_H
#define MIMALLOC_PRIM_H
#include "internal.h" // mi_decl_hidden


// --------------------------------------------------------------------------
Expand Down