This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
rc2007-soccer/source/Concept/Framework/tools.h

12 lines
150 B
C
Raw Normal View History

2007-02-06 14:41:04 +00:00
#ifndef _TOOLS_H
#define _TOOLS_H
#include <stdlib.h>
2007-02-06 14:41:04 +00:00
#ifndef new
void* operator new(size_t sz);
void operator delete(void* p);
#endif
2007-02-06 14:41:04 +00:00
#endif