shithub: riscv

ref: 336df4d4aed17394d5a5fc8ae1f1c24df4c1cf5e
dir: /sys/src/cmd/unix/drawterm/libc/getpid.c/

View raw version
#include	<u.h>
#include	<libc.h>

int
getpid(void)
{
	char b[20];
	int f;

	memset(b, 0, sizeof(b));
	f = open("#c/pid", 0);
	if(f >= 0) {
		read(f, b, sizeof(b));
		close(f);
	}
	return atol(b);
}