repo.or.cz
/
zpugcc
/
jano.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fixed more binutils issues (newer gcc/libc)
[zpugcc/jano.git]
/
toolchain
/
gcc
/
newlib
/
libc
/
sys
/
netware
/
getpid.c
blob
9218dfcc3dc5d5ab090a14ea7c9655d5f841a45e
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. */
4
5
#include <unistd.h>
6
7
pid_t
8
getpid
()
9
{
10
return
GetThreadID
();
11
}