mirror of
https://github.com/alexbatalov/fallout2-ce.git
synced 2025-02-24 18:40:02 +00:00
Fix memory.h
This commit is contained in:
parent
976ecfa2f8
commit
aa723e75ca
@ -1,7 +1,6 @@
|
|||||||
#include "memory.h"
|
#include "memory.h"
|
||||||
|
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
#include "memory_defs.h"
|
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
#ifndef MEMORY_H
|
#ifndef MEMORY_H
|
||||||
#define MEMORY_H
|
#define MEMORY_H
|
||||||
|
|
||||||
|
#include "memory_defs.h"
|
||||||
|
|
||||||
char* internal_strdup(const char* string);
|
char* internal_strdup(const char* string);
|
||||||
void* internal_malloc(size_t size);
|
void* internal_malloc(size_t size);
|
||||||
void* internal_realloc(void* ptr, size_t size);
|
void* internal_realloc(void* ptr, size_t size);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user