/* getpid.c - getpid */
#include
/*------------------------------------------------------------------------
* getpid - Return the ID of the currently executing process
*------------------------------------------------------------------------
*/
pid32 getpid(void)
{
return (currpid);
}