home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_oth / execlib.lzh / EXECLIB / LIBFUNCS.C < prev    next >
Encoding:
Text File  |  1991-08-16  |  103 b   |  13 lines

  1.  
  2. int fl_Plus( x, y )
  3. int x, y;
  4. {
  5.    return(x+y);
  6. }
  7.  
  8. int fl_Minus( x, y )
  9. int x, y;
  10. {
  11.    return(x-y);
  12. }
  13.