home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume1 / 8707 / 48 / complex.h next >
Encoding:
C/C++ Source or Header  |  1990-07-13  |  177 b   |  13 lines

  1. #ifndef DOS    /*    Definition of complex not needed for MSC    */
  2. #ifndef MSDOS    /*    Already in <math.h>    */
  3.  
  4. struct complex {
  5.     double x, y;
  6. };
  7.  
  8. #endif
  9.  
  10. struct fcomplex {
  11.     float x, y;
  12. };
  13.