summaryrefslogtreecommitdiff
path: root/ext/standard/pageinfo.h
diff options
context:
space:
mode:
authorStig Bakken <ssb@php.net>1999-04-17 00:37:12 +0000
committerStig Bakken <ssb@php.net>1999-04-17 00:37:12 +0000
commit257de2baded9330ff392f33fd5a7cc0ba271e18d (patch)
treea271fff83e6eaeebfc32e83173dc7a0f37d1e016 /ext/standard/pageinfo.h
parent2127ede122ad920c22fecdc668e864c0210dd146 (diff)
downloadphp-git-257de2baded9330ff392f33fd5a7cc0ba271e18d.tar.gz
First commit of re-structuring phase one. We have started using automake in
sub-directories and started to move extension code into ext/<name>. For now, I have moved the "standard" extension (which is quite a mix of everything right now) and the GD extension into their own subdirs in ext/. The configure script now also runs configure in the libzend directory automatically and makes sure php4 and libzend use the same config.cache file. To avoid running configure in libzend, use the --no-recursion option. "make" in php4 also builds libzend now. The Apache module doesn't compile right now, but a fix for that is coming up.
Diffstat (limited to 'ext/standard/pageinfo.h')
-rw-r--r--ext/standard/pageinfo.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/ext/standard/pageinfo.h b/ext/standard/pageinfo.h
new file mode 100644
index 0000000000..963fe1c1c7
--- /dev/null
+++ b/ext/standard/pageinfo.h
@@ -0,0 +1,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