home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / tyc / list21_2.c < prev    next >
Text File  |  1993-10-16  |  126b  |  9 lines

  1.  /* Module containing calculation functions. */
  2.  
  3.  #include "calc.h"
  4.  
  5.  long sqr(int x)
  6.  {
  7.     return ((long)x * x);
  8.  }
  9.