mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 16:34:07 +00:00
10 lines
184 B
C
10 lines
184 B
C
|
|
/* getpid - return process ID */
|
|
/* returns phony number under CP/M */
|
|
#include "portab.h"
|
|
#define PHONYPID 222
|
|
WORD getpid() /* CLEAR FUNCTION ***********/
|
|
{
|
|
return(PHONYPID);
|
|
}
|