]> cloudbase.mooo.com Git - z180-stamp.git/blob - avr/xmalloc.h
Autocomplete, long way to go...
[z180-stamp.git] / avr / xmalloc.h
1
2 #ifndef XMALLOC_H
3 #define XMALLOC_H
4
5 void* xmalloc(size_t size);
6 void* xrealloc(void *p, size_t size);
7
8 #endif /* XMALLOC_H */