mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-06 03:23:58 +00:00
16 lines
186 B
C
16 lines
186 B
C
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
pid_t pid;
|
|
|
|
pid = fork ();
|
|
|
|
printf("my pid is %s\n", pid==0 ? "zero" : "non-zero");
|
|
|
|
return 0;
|
|
}
|