From d684c21619905153eff68c43927207248925f6c2 Mon Sep 17 00:00:00 2001 From: Leo C Date: Tue, 12 Aug 2014 12:35:28 +0200 Subject: New U-Boot like AVR main program. Uses U-Boot source code taken from: git://git.denx.de/u-boot.git --- avr/xmalloc.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 avr/xmalloc.h (limited to 'avr/xmalloc.h') diff --git a/avr/xmalloc.h b/avr/xmalloc.h new file mode 100644 index 0000000..cb0019f --- /dev/null +++ b/avr/xmalloc.h @@ -0,0 +1,8 @@ + +#ifndef XMALLOC_H +#define XMALLOC_H + +void* xmalloc(size_t size); +void* xrealloc(void *p, size_t size); + +#endif /* XMALLOC_H */ -- cgit v1.2.3