home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format 91 / af091a.adf / af91a3.lzx / prgs / ExternFunc / sub.c < prev    next >
Text File  |  2019-03-25  |  169b  |  13 lines

  1. /* 
  2. ** Subtract two long integers passed
  3. ** by value and return the result in 
  4. ** a third parameter by reference.
  5. */
  6.  
  7. subtract(x,y,z)
  8. long x,y;
  9. long *z;
  10. {
  11.   *z = x-y;
  12. }
  13.