mirror of
https://github.com/diegocr/libnix.git
synced 2025-12-08 14:58:32 +00:00
8 lines
100 B
C
8 lines
100 B
C
#include <unistd.h>
|
|
#include <proto/exec.h>
|
|
|
|
pid_t getpid(void)
|
|
{
|
|
return (pid_t)FindTask(NULL);
|
|
}
|