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