home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
misc
/
volume1
/
8707
/
48
/
complex.h
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
C/C++ Source or Header
|
1990-07-13
|
177 b
|
13 lines
#ifndef DOS /* Definition of complex not needed for MSC */
#ifndef MSDOS /* Already in <math.h> */
struct complex {
double x, y;
};
#endif
struct fcomplex {
float x, y;
};