mirror of
https://github.com/0intro/conterm
synced 2024-11-22 05:41:28 +03:00
18 lines
198 B
C
18 lines
198 B
C
#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);
|
|
}
|