diff options
author | Anantha Kesari H Y <hyanantha@php.net> | 2003-01-03 11:36:57 +0000 |
---|---|---|
committer | Anantha Kesari H Y <hyanantha@php.net> | 2003-01-03 11:36:57 +0000 |
commit | 72a35f8a4bb2d234c08983ad50eff1319f8e7549 (patch) | |
tree | 3532c5ba7345f3c6649cf83a02c7b2ca95f2cacb /netware | |
parent | afaf7cc24ef27ce2c8b2b3ed10a957aebf197c80 (diff) | |
download | php-git-72a35f8a4bb2d234c08983ad50eff1319f8e7549.tar.gz |
New file added for NetWare.
Diffstat (limited to 'netware')
-rw-r--r-- | netware/geterrnoptr.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/netware/geterrnoptr.c b/netware/geterrnoptr.c new file mode 100644 index 0000000000..065d33e84d --- /dev/null +++ b/netware/geterrnoptr.c @@ -0,0 +1,9 @@ +/* Moved into a separate source file -- can be eliminated later */ + +#include <errno.h> + +int *__get_errno_ptr(void) +{ + return ___errno(); +} + |