home *** CD-ROM | disk | FTP | other *** search
/ Sams Teach Yourself C in 21 Days (6th Edition) / STYC216E.ISO / mac / Examples / Day21 / calc.c < prev    next >
C/C++ Source or Header  |  2002-05-21  |  122b  |  10 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.  
  10.