A new file added and some old files modified for NetWare.

This commit is contained in:
Anantha Kesari H Y 2003-01-03 12:48:14 +00:00
parent a1402eebf1
commit 3e2f1526bc
5 changed files with 160 additions and 28 deletions

View file

@ -244,18 +244,17 @@ extern pval *data;
#if !defined(PHP_WIN32)
#ifdef NETWARE
#ifdef NEW_LIBC
/*#undef environ*/ /* For now, so that our 'environ' implementation is used */
#define php_sleep sleep
#else
#else /* NEW_LIBC */
#define php_sleep delay /* sleep() and usleep() are not available */
#define usleep delay
#endif
#endif /* NEW_LIBC */
extern char **environ;
#else
#else /* NETWARE */
extern char **environ;
#define php_sleep sleep
#endif
#endif
#endif /* NETWARE */
#endif /* !defined(PHP_WIN32) */
#ifdef PHP_PWRITE_64
ssize_t pwrite(int, void *, size_t, off64_t);