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
sb,soc/amd,intel: Apply minor FADT fixes
[coreboot.git]
/
src
/
include
/
stdlib.h
blob
8fa5d20ab6f43b2ff86fa48fcb7dfcb9bb44348c
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#ifndef STDLIB_H
4
#define STDLIB_H
5
6
#include <stddef.h>
7
8
void
*
memalign
(
size_t
boundary
,
size_t
size
);
9
void
*
malloc
(
size_t
size
);
10
void
*
calloc
(
size_t
nitems
,
size_t
size
);
11
void
free
(
void
*
ptr
);
12
13
#endif
/* STDLIB_H */