summaryrefslogtreecommitdiff
path: root/kernel/ksbrk.h
blob: fba060e2a55a0298d9e97a897432f39e446f0f9b (plain)
1
2
3
4
5
6
7
8
#ifndef KSBRK_H
#define KSBRK_H
#include <stddef.h>
#include <typedefs.h>

void *ksbrk(size_t s);
void *ksbrk_physical(size_t s, void **physical);
#endif