fixed more binutils issues (newer gcc/libc)
[zpugcc/jano.git] / toolchain / gcc / newlib / libc / sys / netware / getpid.c
blob9218dfcc3dc5d5ab090a14ea7c9655d5f841a45e
1 /* NetWare version of getpid. This is supposed to return a unique
2 identifier which is used to create temporary file names. We use
3 the thread ID. I hope this is unique. */
5 #include <unistd.h>
7 pid_t
8 getpid ()
10 return GetThreadID ();