shithub: tlsclient

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