1
0
Fork 0

Merge pull request #139 from KuehnhammerTobias/pr_bot_mem

Fixed l_memory/MEMORYMANAGER.
This commit is contained in:
Eugene C 2022-01-21 18:28:10 +02:00 committed by GitHub
commit 0051710683
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -36,16 +36,16 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#include "be_interface.h"
//#define MEMDEBUG
//#define MEMORYMANEGER
//#define MEMORYMANAGER
#define MEM_ID 0x12345678l
#define HUNK_ID 0x87654321l
int allocatedmemory;
int totalmemorysize;
int numblocks;
#ifdef MEMORYMANAGER
#ifdef MEMORYMANEGER
static int allocatedmemory;
static int totalmemorysize;
static int numblocks;
typedef struct memoryblock_s
{