13 lines
168 B
C
13 lines
168 B
C
#ifndef MEMORY_H
|
|
#define MEMORY_H
|
|
|
|
|
|
#include "os.h"
|
|
|
|
#ifdef MEMORY_CHECK_ENABLED
|
|
#define MEMWATCH
|
|
#include "thirdparty/memwatch/memwatch.h"
|
|
#endif
|
|
|
|
|
|
#endif // MEMORY_H
|