mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 00:14:25 +00:00
8 lines
92 B
C
8 lines
92 B
C
/*
|
|
* Getpid.c -- Whitesmith's version of UNIX getpid function
|
|
*/
|
|
getpid()
|
|
{
|
|
return(1);
|
|
}
|