diff options
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/main/php.h b/main/php.h index 3b0b896563..0b5a904b2c 100644 --- a/main/php.h +++ b/main/php.h @@ -12,13 +12,11 @@ | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ - | Authors: Andi Gutmans <andi@zend.com> | - | Zeev Suraski <zeev@zend.com> | + | Authors: Andi Gutmans <andi@php.net> | + | Zeev Suraski <zeev@php.net> | +----------------------------------------------------------------------+ */ -/* $Id$ */ - #ifndef PHP_H #define PHP_H @@ -26,7 +24,7 @@ #include <dmalloc.h> #endif -#define PHP_API_VERSION 20170718 +#define PHP_API_VERSION 20180731 #define PHP_HAVE_STREAMS #define YYDEBUG 0 #define PHP_DEFAULT_CHARSET "UTF-8" @@ -41,7 +39,7 @@ #undef sprintf #define sprintf php_sprintf -/* Operating system family defintion */ +/* Operating system family definition */ #ifdef PHP_WIN32 # define PHP_OS_FAMILY "Windows" #elif defined(BSD) || defined(__DragonFly__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) @@ -101,9 +99,7 @@ typedef int gid_t; typedef char * caddr_t; typedef unsigned int uint; typedef unsigned long ulong; -# if !NSAPI typedef int pid_t; -# endif # ifndef PHP_DEBUG # ifdef inline |