Add the last few things for bash to compile :D

This commit is contained in:
jD91mZM2
2018-08-03 11:18:52 +02:00
parent 44599a032e
commit ba8bd8c4e8
12 changed files with 112 additions and 26 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef _MALLOC_H
#define _MALLOC_H
#include <stddef.h>
// Generated from:
// `grep "malloc\|calloc\|realloc\|free\|valloc\|memalign" target/include/stdlib.h`
void *calloc(size_t nelem, size_t elsize);
void free(void *ptr);
void *malloc(size_t size);
void *memalign(size_t alignment, size_t size);
void *realloc(void *ptr, size_t size);
void *valloc(size_t size);
#endif