1 /* 2 Low Level Interface Library 3 Copyright 1983-2000 Green Hills Software,Inc. 4 5 * This program is the property of Green Hills Software, Inc, 6 * its contents are proprietary information and no part of it 7 * is to be disclosed to anyone except employees of Green Hills 8 * Software, Inc., or as agreed in writing signed by the President 9 * of Green Hills Software, Inc. 10 */ 11 /* ind_heap.h: declarations for callers of ind_heap.c */ 12 13 #include <stddef.h> 14 int brk(void *addr); 15 void *sbrk(size_t size); 16 size_t __ghs_heapseg_size(void); 17 void *__ghs_alloc(int size, int align); 18 void *__ghs_calloc(int size, int align); 19