home *** CD-ROM | disk | FTP | other *** search
- #include <syngate1.h>
- #include <math.h>
-
-
- /* The following line is used when creating a .BBX
-
- main (language_type, arctangent, argument)
-
- */
-
-
- /* The following line is used when creating the .OBJ to link to a compiled
- C program that uses this BlackBox */
-
- CALCULATE_AN_ARCTANGENT (language_type, arctangent, argument)
-
- int language_type;
- double *arctangent, *argument;
-
- {
- *arctangent = atan(*argument);
- }
-