Uninitialized vector entry?
[minix3.git] / lib / float / adder.h
blob2fed41451f29f94b2eae56d69d0ad734f9a62ca2
1 /*
2 (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
3 See the copyright notice in the ACK home directory, in the file "Copyright".
4 */
6 /* $Header$ */
8 /*
9 * include file for 32 & 64 bit addition
12 typedef struct B64 {
13 unsigned long h_32; /* higher 32 bits of 64 */
14 unsigned long l_32; /* lower 32 bits of 64 */
15 } B64;