sbrk.c\linux\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/linux/sbrk.c
blob: 36437653bb9085b02908f402403e59cee7bd637c (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <stdint.h>
#include "syscall.h"
void *sbrk(intptr_t inc)
{
	unsigned long cur = syscall(SYS_brk, 0);
	if (inc && syscall(SYS_brk, cur+inc) != cur+inc) return (void *)-1;
	return (void *)cur;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月29日 12:43:03 +0000

AltStyle によって変換されたページ (->オリジナル) /