home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / C / SASC6571.LZX / examples / samplelib / test.c < prev    next >
Encoding:
Text File  |  1996-12-24  |  149 b   |  13 lines

  1. int b = 0;
  2.  
  3. __asm __saveds LIBtest1(void)
  4. {
  5.         return(b);
  6. }
  7.  
  8. __asm __saveds LIBtest2(register __d1 int a)
  9. {
  10.         b = a;
  11.         return(b);
  12. }
  13.