source: trunk/minix/lib/ack/float/adder.h@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 427 bytes
Line 
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/ack/float/adder.h,v 1.1 2005/10/10 15:27:42 beng Exp $ */
7
8/*
9 * include file for 32 & 64 bit addition
10 */
11
12typedef 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.