repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Documentation: Fix sphinx configuration
[coreboot.git]
/
src
/
include
/
stdlib.h
blob
f6369bf0f44bc62d364cda18dc257a9492a4dd84
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
free
(
void
*
ptr
);
9
10
#endif
/* STDLIB_H */