home *** CD-ROM | disk | FTP | other *** search
/ minnie.tuhs.org / unixen.tar / unixen / PDP-11 / Trees / V6 / usr / source / s4 / fstat.s < prev    next >
Encoding:
Text File  |  1975-05-13  |  287 b   |  26 lines

  1. / C library -- fstat
  2.  
  3. / error = fstat(file, statbuf);
  4.  
  5. / int statbuf[17] or
  6. / char statbuf[34]
  7. / as appropriate
  8.  
  9. .globl    _fstat, cerror
  10.  
  11. _fstat:
  12.     mov    r5,-(sp)
  13.     mov    sp,r5
  14.     mov    4(r5),r0
  15.     mov    6(r5),0f
  16.     sys    0; 9f
  17.     bec    1f
  18.     jmp    cerror
  19. 1:
  20.     clr    r0
  21.     mov    (sp)+,r5
  22.     rts    pc
  23. .data
  24. 9:
  25.     sys    fstat; 0:..
  26.