summaryrefslogtreecommitdiff
path: root/kernel/ksbrk.h
blob: a55d985fb52e257d730f4e76a7a72daea217b6ad (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