mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
11 lines
178 B
C
11 lines
178 B
C
#ifndef _PROCESS_H
|
|
#define _PROCESS_H
|
|
|
|
PHP_FUNCTION(getmyuid);
|
|
PHP_FUNCTION(getmypid);
|
|
PHP_FUNCTION(getmyinode);
|
|
PHP_FUNCTION(getlastmod);
|
|
|
|
extern long php_getuid(void);
|
|
|
|
#endif
|