shithub: drawterm

ref: 2da0defac8147c4a9e34ecea5d122471c3e6db0b
dir: /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);
}