Merge pull request #49 from Benzodia/master

Remove underscore prefixes to match c lanuguage standard
This commit is contained in:
Daan 2019-06-26 08:44:25 -07:00 committed by GitHub
commit 5dfced26c2
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 8 deletions

View file

@ -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. "LICENSE" at the root of this distribution.
-----------------------------------------------------------------------------*/ -----------------------------------------------------------------------------*/
#pragma once #pragma once
#ifndef __MIMALLOC_ATOMIC_H #ifndef MIMALLOC_ATOMIC_H
#define __MIMALLOC_ATOMIC_H #define MIMALLOC_ATOMIC_H
// ------------------------------------------------------ // ------------------------------------------------------
// Atomics // Atomics

View file

@ -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. "LICENSE" at the root of this distribution.
-----------------------------------------------------------------------------*/ -----------------------------------------------------------------------------*/
#pragma once #pragma once
#ifndef __MIMALLOC_INTERNAL_H #ifndef MIMALLOC_INTERNAL_H
#define __MIMALLOC_INTERNAL_H #define MIMALLOC_INTERNAL_H
#include "mimalloc-types.h" #include "mimalloc-types.h"

View file

@ -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. "LICENSE" at the root of this distribution.
-----------------------------------------------------------------------------*/ -----------------------------------------------------------------------------*/
#pragma once #pragma once
#ifndef __MIMALLOC_TYPES_H #ifndef MIMALLOC_TYPES_H
#define __MIMALLOC_TYPES_H #define MIMALLOC_TYPES_H
#include <stdlib.h> // size_t etc. #include <stdlib.h> // size_t etc.
#include <stddef.h> // ptrdiff_t #include <stddef.h> // ptrdiff_t

View file

@ -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. "LICENSE" at the root of this distribution.
-----------------------------------------------------------------------------*/ -----------------------------------------------------------------------------*/
#pragma once #pragma once
#ifndef __MIMALLOC_H #ifndef MIMALLOC_H
#define __MIMALLOC_H #define MIMALLOC_H
#define MI_MALLOC_VERSION 100 // major + 2 digits minor #define MI_MALLOC_VERSION 100 // major + 2 digits minor