mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
A new file added and some old files modified for NetWare.
This commit is contained in:
parent
a1402eebf1
commit
3e2f1526bc
5 changed files with 160 additions and 28 deletions
11
main/php.h
11
main/php.h
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue