mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fixed bug #51943 (Several files are out of ANSI spec)
# Based on patch by CoreyStup at gmail dot com
This commit is contained in:
parent
fcb0984991
commit
aeb1dc7cc4
3 changed files with 6 additions and 4 deletions
|
@ -91,6 +91,8 @@
|
|||
|
||||
#define TIMELIB_ERROR 999
|
||||
|
||||
/* Some compilers like AIX, defines uchar in sys/types.h */
|
||||
#undef uchar
|
||||
typedef unsigned char uchar;
|
||||
|
||||
#define BSIZE 8192
|
||||
|
|
|
@ -25,8 +25,8 @@
|
|||
typedef struct {
|
||||
php_hash_uint64 state[3];
|
||||
php_hash_uint64 passed;
|
||||
unsigned char passes:1;
|
||||
unsigned char length:7;
|
||||
unsigned int passes:1;
|
||||
unsigned int length:7;
|
||||
unsigned char buffer[64];
|
||||
} PHP_TIGER_CTX;
|
||||
|
||||
|
|
|
@ -188,7 +188,7 @@ enum pdo_case_conversion {
|
|||
enum pdo_null_handling {
|
||||
PDO_NULL_NATURAL = 0,
|
||||
PDO_NULL_EMPTY_STRING = 1,
|
||||
PDO_NULL_TO_STRING = 2,
|
||||
PDO_NULL_TO_STRING = 2
|
||||
};
|
||||
|
||||
/* {{{ utils for reading attributes set as driver_options */
|
||||
|
@ -349,7 +349,7 @@ enum pdo_param_event {
|
|||
PDO_PARAM_EVT_EXEC_POST,
|
||||
PDO_PARAM_EVT_FETCH_PRE,
|
||||
PDO_PARAM_EVT_FETCH_POST,
|
||||
PDO_PARAM_EVT_NORMALIZE,
|
||||
PDO_PARAM_EVT_NORMALIZE
|
||||
};
|
||||
|
||||
typedef int (*pdo_stmt_param_hook_func)(pdo_stmt_t *stmt, struct pdo_bound_param_data *param, enum pdo_param_event event_type TSRMLS_DC);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue