xref: /original-bsd/usr.bin/f77/libF77/complex (revision 97bd5884)
1/*-
2 * Copyright (c) 1991 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.proprietary.c%
6 *
7 *	@(#)complex	5.2 (Berkeley) 04/12/91
8 */
9
10typedef struct { float real, imag; } complex;
11typedef struct { double dreal, dimag; } dcomplex;
12