home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l010 / 5.ddi / C5.ARC / ARCTAN.C next >
Encoding:
C/C++ Source or Header  |  1989-12-20  |  433 b   |  24 lines

  1. #include <syngate1.h>
  2. #include <math.h>
  3.  
  4.  
  5. /* The following line is used when creating a .BBX
  6.  
  7. main (language_type, arctangent, argument)
  8.  
  9. */
  10.  
  11.  
  12. /* The following line is used when creating the .OBJ to link to a compiled
  13.    C program that uses this BlackBox */
  14.  
  15. CALCULATE_AN_ARCTANGENT (language_type, arctangent, argument)
  16.  
  17. int language_type;
  18. double *arctangent, *argument;
  19.  
  20. {
  21. *arctangent = atan(*argument);
  22. }
  23.  
  24.