more header cleanup and conformance fixes - locale.h, time.h
[musl] / src / linux / sbrk.c
1 #include <stddef.h>
2 #include "syscall.h"
3
4 void *sbrk(ptrdiff_t inc)
5 {
6         return (void *)syscall1(__NR_brk, syscall1(__NR_brk, 0)+inc);
7 }