micromenu/inc/hal.h

12 lines
150 B
C
Raw Normal View History

2018-10-19 11:49:11 +00:00
void print(const char* str);
void print(int str);
#ifndef LINUX
void * operator new(unsigned int size);
void operator delete(void * ptr);
#endif