bug fix in lseek.e

This commit is contained in:
ceriel 1987-04-29 13:36:52 +00:00
parent 5ba897a2bc
commit 64606dcc5c

View File

@ -21,5 +21,13 @@
loc -1
#endif
1
#if EM_WSIZE==1
ret 4*EM_WSIZE
#endif
#if EM_WSIZE==2
ret 2*EM_WSIZE
#endif
#if EM_WSIZE==4
ret EM_WSIZE
#endif
end