12 lines
150 B
C
12 lines
150 B
C
|
|
||
|
|
||
|
void print(const char* str);
|
||
|
void print(int str);
|
||
|
|
||
|
#ifndef LINUX
|
||
|
|
||
|
void * operator new(unsigned int size);
|
||
|
void operator delete(void * ptr);
|
||
|
|
||
|
#endif
|