Fix memory.h

This commit is contained in:
Alexander Batalov 2022-06-18 15:41:06 +03:00
parent 976ecfa2f8
commit aa723e75ca
2 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,6 @@
#include "memory.h"
#include "debug.h"
#include "memory_defs.h"
#include <stdio.h>
#include <stdlib.h>

View File

@ -1,6 +1,8 @@
#ifndef MEMORY_H
#define MEMORY_H
#include "memory_defs.h"
char* internal_strdup(const char* string);
void* internal_malloc(size_t size);
void* internal_realloc(void* ptr, size_t size);