libc.obj: added tan.asm

git-svn-id: svn://kolibrios.org@9775 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
turbocat 2022-04-20 19:10:24 +00:00
parent 82646d764b
commit 2a2a059aa9

View File

@ -0,0 +1,10 @@
format COFF
section '.text'
public _tan as "tan"
_tan:
fld qword[esp+4]
fptan
fxch
ret