bug fix in lseek.e

This commit is contained in:
ceriel 1987-04-29 13:36:52 +00:00
parent ed582b0752
commit 1dba69eb38

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