Rev | Line | |
---|
[9] | 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 | */
|
---|
| 5 |
|
---|
| 6 | /* $Header: /cvsup/minix/src/lib/float/adder.h,v 1.1.1.1 2005/04/21 14:56:10 beng Exp $ */
|
---|
| 7 |
|
---|
| 8 | /*
|
---|
| 9 | * include file for 32 & 64 bit addition
|
---|
| 10 | */
|
---|
| 11 |
|
---|
| 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;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.