coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
stdlib.h
Go to the documentation of this file.
1 #ifndef STDLIB_H
2 #define STDLIB_H
3 
4 #include <stddef.h>
5 
6 void *memalign(size_t boundary, size_t size);
7 void *malloc(size_t size);
8 void *calloc(size_t nitems, size_t size);
9 void free(void *ptr);
10 
11 #endif /* STDLIB_H */
void * malloc(size_t size)
Definition: malloc.c:53
void * memalign(size_t boundary, size_t size)
Definition: malloc.c:20
void * calloc(size_t nitems, size_t size)
Definition: malloc.c:58
void free(void *ptr)
Definition: malloc.c:67