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

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