getmypid is a PHP core function

This commit is contained in:
Marcos García 2012-08-03 15:26:26 +02:00
parent d30b2804bc
commit cc4fe0889d

View File

@ -4097,17 +4097,4 @@ function getCurrencySymbol($currency_code)
return $currency_sign;
}
if (! function_exists('getmypid'))
{
/**
* Return PID
*
* @return void
*/
function getmypid()
{
return rand(1,32768);
}
}
?>