/* @(#)complex.h 1.1 92/07/30 SMI */ /* * Copyright (c) 1987 by Sun Microsystems, Inc. */ #include typedef struct { float real, imag; } complex; typedef struct { double dreal, dimag; } dcomplex;