9 lines
169 B
C
9 lines
169 B
C
/*
|
|
* include file for 32 & 64 bit addition
|
|
*/
|
|
|
|
typedef struct {
|
|
unsigned long h_32; /* higher 32 bits of 64 */
|
|
unsigned long l_32; /* lower 32 bits of 64 */
|
|
} B64;
|