shithub: drawterm-fdroid

ref: b44945b79ee0413d93bedc0dfb3f569d028bc6c2
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);
}