Revert "getmypid is a PHP core function"

This reverts commit cc4fe0889d.
This commit is contained in:
Marcos García 2012-08-03 21:46:05 +02:00
parent 0166968431
commit 7defdbc663

View File

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