home *** CD-ROM | disk | FTP | other *** search
- /* Simple C Module that will make a call to the C RTL function */
- /* pow. Note that this is just a simple exercise, but is also */
- /* a useless one unless you own the Turbo C RTL. */
-
- #include <math.h>
-
- extern double result;
-
- void power (double *x, double *y)
- {
- result = pow (*x, *y);
- }
-