Reorganized source tree. Started using autotools.
This commit is contained in:
16
src/util.hpp
Normal file
16
src/util.hpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef UTIL_H
|
||||
#define UTIL_H
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
extern "C" void __cxa_pure_virtual();
|
||||
|
||||
extern "C" void* memcpy(void* destination, const void* source, size_t num);
|
||||
|
||||
extern "C" void* memmove(void* destination, const void* source, size_t num);
|
||||
|
||||
extern "C" int memcmp(const void* ptr1, const void* ptr2, size_t num);
|
||||
|
||||
extern "C" void* memset(void* ptr, int value, size_t num);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user