1: /* Copyright (c) 1982 Regents of the University of California */
   2: 
   3: static char sccsid[] = "@(#)COS.c 1.1 2/8/82";
   4: 
   5: #include <math.h>
   6: extern int errno;
   7: 
   8: double
   9: COS(value)
  10:     double  value;
  11: {
  12:     double result;
  13: 
  14:     errno = 0;
  15:     result = cos(value);
  16:     if (errno != 0) {
  17:         ERROR("Cannot compute cos(%e)\n", value);
  18:         return;
  19:     }
  20:     return result;
  21: }

Defined functions

COS defined in line 8; used 2 times

Defined variables

sccsid defined in line 3; never used
Last modified: 1983-02-01
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 784
Valid CSS Valid XHTML 1.0 Strict