repo.or.cz
/
barebox-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix error return value while loading environment
[barebox-mini2440.git]
/
include
/
mem_malloc.h
blob
67b19d7ff19673128484e7350fcd0dc0bc1f4580
1
#ifndef __MEM_MALLOC_H
2
#define __MEM_MALLOC_H
3
4
#include <linux/types.h>
5
6
void
mem_malloc_init
(
void
*
start
,
void
*
end
);
7
ulong
mem_malloc_start
(
void
);
8
ulong
mem_malloc_end
(
void
);
9
10
#endif