ack/plat/em/libsys/lseek.e

34 lines
342 B
Plaintext
Raw Normal View History

1985-01-01 22:27:02 +00:00
#
mes 2,EM_WSIZE,EM_PSIZE
exp $lseek
pro $lseek,0
lal 0
loi 4*EM_WSIZE
loc 19
mon
zeq *1
ste errno
#if EM_WSIZE==1
ldc -1
loc 2
loc 4
cii
#endif
#if EM_WSIZE==2
ldc -1
#endif
#if EM_WSIZE==4
loc -1
#endif
1
1987-04-29 13:36:52 +00:00
#if EM_WSIZE==1
ret 4*EM_WSIZE
#endif
#if EM_WSIZE==2
1985-01-01 22:27:02 +00:00
ret 2*EM_WSIZE
1987-04-29 13:36:52 +00:00
#endif
#if EM_WSIZE==4
ret EM_WSIZE
#endif
1985-01-01 22:27:02 +00:00
end