FS#8961 - Anti-Aliased Fonts.
[kugel-rb.git] / apps / plugins / zxbox / helpers.h
blobba8607d5cb4fb0ec8e6924ee0c2199e59048ed0c
1 #ifndef HELPERS_H
2 #define HELPERS_H
4 extern int my_getc(int);
5 extern int my_putc(char,int);
6 extern off_t my_ftell(int);
7 extern void *my_malloc(size_t size);
10 #define getc my_getc
11 #define malloc my_malloc
12 #define ftell my_ftell
13 #define putc my_putc
15 #endif /* HELPERS_H */