home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_09 / 1009072a < prev    next >
Text File  |  1992-05-11  |  163b  |  9 lines

  1. short calculate_output(net)
  2.    short net;
  3. {
  4.    short result;
  5.    result = 1;
  6.    if(net < 0) result = -1;
  7.    return(result);
  8. }  /* ends calculate_output */
  9.