/*- * Copyright (c) 1991 The Regents of the University of California. * All rights reserved. * * %sccs.include.proprietary.c% * * @(#)complex 5.2 (Berkeley) 04/12/91 */ typedef struct { float real, imag; } complex; typedef struct { double dreal, dimag; } dcomplex;