ack/mach/proto/fp/adder.h
1988-04-07 10:57:49 +00:00

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;