blob: 5f230fec05162c21c5387f228fe8e809986f6ef4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _PROCESS_H
#define _PROCESS_H
PHP_FUNCTION(getmyuid);
PHP_FUNCTION(getmypid);
PHP_FUNCTION(getmyinode);
PHP_FUNCTION(getlastmod);
extern long php_getuid(void);
#endif
|