⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 oldcomplex.h

📁 操作系统SunOS 4.1.3版本的源码
💻 H
字号:
/*	@(#)oldcomplex.h 1.1 92/07/30 SMI	*//* * Copyright (c) 1988 by Sun Microsystems, Inc. */#include <math.h>typedef struct { float real, imag; } complex;typedef struct { double dreal, dimag; } dcomplex;/*	So far the following works for all architectures.	*/#define COMPLEXFUNCTIONTYPE	double#define RETURNCOMPLEX(R,M)	{ union { double _d; float _f[2]} _kluge ; _kluge._f[0] = (R) ; _kluge._f[1] = (M) ; return(_kluge._d) ; }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -