blob: 963fe1c1c7abd31759a9a3ef7a7ad123b274cb7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _PROCESS_H
#define _PROCESS_H
extern void php3_getmyuid(INTERNAL_FUNCTION_PARAMETERS);
extern void php3_getmypid(INTERNAL_FUNCTION_PARAMETERS);
extern void php3_getmyinode(INTERNAL_FUNCTION_PARAMETERS);
extern void php3_getlastmod(INTERNAL_FUNCTION_PARAMETERS);
extern long _php3_getuid(void);
#endif
|