mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-21 16:05:44 -07:00
64-bit cleanliness: we were already carefully using a uint32 type in
the SHA code, but it wasn't correctly defined! [originally from svn r7817]
This commit is contained in:
@ -7,6 +7,7 @@
|
|||||||
|
|
||||||
#include <stdio.h> /* for FILE */
|
#include <stdio.h> /* for FILE */
|
||||||
#include <stdlib.h> /* for size_t */
|
#include <stdlib.h> /* for size_t */
|
||||||
|
#include <limits.h> /* for UINT_MAX */
|
||||||
|
|
||||||
#ifndef TRUE
|
#ifndef TRUE
|
||||||
#define TRUE 1
|
#define TRUE 1
|
||||||
@ -331,7 +332,14 @@ void random_free(random_state *state);
|
|||||||
char *random_state_encode(random_state *state);
|
char *random_state_encode(random_state *state);
|
||||||
random_state *random_state_decode(char *input);
|
random_state *random_state_decode(char *input);
|
||||||
/* random.c also exports SHA, which occasionally comes in useful. */
|
/* random.c also exports SHA, which occasionally comes in useful. */
|
||||||
|
#if __STDC_VERSION__ >= 199901L
|
||||||
|
#include <stdint.h>
|
||||||
|
typedef uint32_t uint32;
|
||||||
|
#elif UINT_MAX >= 4294967295L
|
||||||
|
typedef unsigned int uint32;
|
||||||
|
#else
|
||||||
typedef unsigned long uint32;
|
typedef unsigned long uint32;
|
||||||
|
#endif
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint32 h[5];
|
uint32 h[5];
|
||||||
unsigned char block[64];
|
unsigned char block[64];
|
||||||
|
Reference in New Issue
Block a user