mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-16 02:27:32 -05:00
Adopt C99 <stdint.h> integer types.
The annoying int64.h is completely retired, since C99 guarantees a 64-bit integer type that you can actually treat like an ordinary integer. Also, I've replaced the local typedefs uint32 and word32 (scattered through different parts of the crypto code) with the standard uint32_t.
This commit is contained in:
@ -24,7 +24,7 @@ typedef gss_OID const_gss_OID; /* for our prototypes below */
|
||||
******************************************************************************/
|
||||
|
||||
/* GSSAPI Type Definitions */
|
||||
typedef uint32 OM_uint32;
|
||||
typedef uint32_t OM_uint32;
|
||||
|
||||
typedef struct gss_OID_desc_struct {
|
||||
OM_uint32 length;
|
||||
|
Reference in New Issue
Block a user