]> granicus.if.org Git - php/commitdiff
Do not use non-standard type u_int32_t.
authorSascha Schumann <sas@php.net>
Sat, 13 May 2000 09:36:33 +0000 (09:36 +0000)
committerSascha Schumann <sas@php.net>
Sat, 13 May 2000 09:36:33 +0000 (09:36 +0000)
Instead, use UINT4 for now which is platform-independent.

PR: #4262

ext/icap/php_icap.c
ext/mcal/php_mcal.c

index 28d3aa56f4b66bd3804cc229e71109e62815ba2d..5335a93636c1ac02a7f29201fa576b8a3603f73a 100644 (file)
@@ -51,6 +51,7 @@
 #include "php_icap.h"
 #include "modules.h"
 #include "ext/standard/info.h"
+#include "ext/standard/global.h"
 #if (WIN32|WINNT)
 #include "winsock.h"
 #endif
@@ -67,7 +68,7 @@ typedef struct php_icap_le_struct {
 
 typedef struct cal_list
 {
-u_int32_t uid;
+UINT4 uid;
 struct cal_list *next;
 } cal_list_t;
 
@@ -904,7 +905,7 @@ void cc_searched (unsigned long cal_uid)
 }
 
 
-void cc_appended(u_int32_t uid)
+void cc_appended(UINT4 uid)
 {
 
 }
index 05e9dc3d4dfbd9b6d3b28abde81e1f5235ea9244..aee722c9700a9a42bb44492c663422dbe5125485 100644 (file)
@@ -51,6 +51,7 @@
 #include "php_mcal.h"
 #include "modules.h"
 #include "ext/standard/info.h"
+#include "ext/standard/global.h"
 #ifdef PHP_WIN32
 #include "winsock.h"
 #endif
@@ -68,7 +69,7 @@ typedef struct _php_mcal_le_struct {
 
 
 typedef struct cal_list {
-       u_int32_t uid;
+       UINT4 uid;
        struct cal_list *next;
 } cal_list_t;
 
@@ -1598,7 +1599,7 @@ void cc_searched (unsigned long cal_uid)
        }
 }
 
-void cc_appended(u_int32_t uid)
+void cc_appended(UINT4 uid)
 {
 }