summaryrefslogtreecommitdiff
path: root/ext/mcal/php_mcal.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/mcal/php_mcal.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/mcal/php_mcal.c')
-rw-r--r--ext/mcal/php_mcal.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/mcal/php_mcal.c b/ext/mcal/php_mcal.c
index c56cfbe895..070096b427 100644
--- a/ext/mcal/php_mcal.c
+++ b/ext/mcal/php_mcal.c
@@ -47,7 +47,7 @@
#include "php_mcal.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
@@ -65,7 +65,7 @@ typedef struct _php_mcal_le_struct {
typedef struct cal_list {
- UINT4 uid;
+ php_uint32 uid;
struct cal_list *next;
} cal_list_t;
@@ -1595,7 +1595,7 @@ void cc_searched (unsigned long cal_uid)
}
}
-void cc_appended(UINT4 uid)
+void cc_appended(php_uint32 uid)
{
}