diff options
author | Julian Fang <julianisabear@gmail.com> | 2019-06-26 12:57:13 +0800 |
---|---|---|
committer | Julian Fang <julianisabear@gmail.com> | 2019-06-26 12:57:13 +0800 |
commit | c19d3a27a8ece7749d049a4fb07b628d63fb63b2 (patch) | |
tree | e53640e9468fdcb348dc794ffcfccaf876472ea8 /include/mimalloc.h | |
parent | fac0d4b409de7fa0fcd3145d8f12e7efa34ff2d3 (diff) |
Remove underscore prefixes to match c lanuguage standard
Diffstat (limited to 'include/mimalloc.h')
-rw-r--r-- | include/mimalloc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mimalloc.h b/include/mimalloc.h index b5fd6f9..51f7ce1 100644 --- a/include/mimalloc.h +++ b/include/mimalloc.h @@ -5,8 +5,8 @@ terms of the MIT license. A copy of the license can be found in the file "LICENSE" at the root of this distribution. -----------------------------------------------------------------------------*/ #pragma once -#ifndef __MIMALLOC_H -#define __MIMALLOC_H +#ifndef MIMALLOC_H +#define MIMALLOC_H #define MI_MALLOC_VERSION 100 // major + 2 digits minor |