mirror of
https://github.com/GnoConsortium/gno.git
synced 2024-12-22 14:30:29 +00:00
12 lines
146 B
C
12 lines
146 B
C
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int
|
|
main(int argc, char **argv) {
|
|
pid_t pid;
|
|
|
|
pid = getpid();
|
|
printf("pid is %d\n", pid);
|
|
return 0;
|
|
}
|