They're not there. If you can wait about a week I can add them. I'm
traveling with no access to the development environment.
If you are a C programmer, they're easy to add:
sketch.l: Look at token definitions for sin and cos and add asin and
acos.
sketch.y: Look at rules for SIN and COS. Add similar for ASIN and
ACOS. Also add %token directives at top.
expr.c: Add do_asin and do_acos to match sin( and cos(. Additionally
since asin and acos have finite domain, see sqrt( to see how to handle
bad argument values.
This ought to be it. You will need flex, bison, and GNU make as well
as gcc to complete the build.