summaryrefslogtreecommitdiff
path: root/ext/icap/php_icap.c
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-08-21 10:10:31 +0000
committerSascha Schumann <sas@php.net>2000-08-21 10:10:31 +0000
commit6ce467dc134478dd876013c76a36d60a068f55ad (patch)
tree80eede3a93e7b97b073fcb9a519b5951b9bd0ad0 /ext/icap/php_icap.c
parent19741cc37ad1773a6d4b59392991ff7b90899775 (diff)
downloadphp-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/php_icap.c')
-rw-r--r--ext/icap/php_icap.c6
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)
{
}