diff options
author | Sascha Schumann <sas@php.net> | 2000-08-21 10:10:31 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-08-21 10:10:31 +0000 |
commit | 6ce467dc134478dd876013c76a36d60a068f55ad (patch) | |
tree | 80eede3a93e7b97b073fcb9a519b5951b9bd0ad0 /ext/icap | |
parent | 19741cc37ad1773a6d4b59392991ff7b90899775 (diff) | |
download | php-git-6ce467dc134478dd876013c76a36d60a068f55ad.tar.gz |
Get rid of php_global.h and the associated data types UINT4/_POINTER.
We use php_uint32 now globally.
Also removed K&R support from md5.[ch].
Diffstat (limited to 'ext/icap')
-rw-r--r-- | ext/icap/php_icap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/icap/php_icap.c b/ext/icap/php_icap.c index 45e6aadff1..8e5b4f8b47 100644 --- a/ext/icap/php_icap.c +++ b/ext/icap/php_icap.c @@ -47,7 +47,7 @@ #include "php_icap.h" #include "modules.h" #include "ext/standard/info.h" -#include "ext/standard/php_global.h" +#include "ext/standard/basic_functions.h" #ifdef PHP_WIN32 #include "winsock.h" #endif @@ -64,7 +64,7 @@ typedef struct php_icap_le_struct { typedef struct cal_list { -UINT4 uid; +php_uint32 uid; struct cal_list *next; } cal_list_t; @@ -904,7 +904,7 @@ void cc_searched (unsigned long cal_uid) } -void cc_appended(UINT4 uid) +void cc_appended(php_uint32 uid) { } |