mirror of
https://github.com/php/php-src.git
synced 2024-11-26 11:23:47 +08:00
12 lines
178 B
C
12 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
|