1 /* ******************************************************
 2    *                                                    *
 3    *                                                    *
 4    * Copyright (c) 1972 by Massachusetts Institute of   *
 5    * Technology and Honeywell Information Systems, Inc. *
 6    *                                                    *
 7    *                                                    *
 8    ****************************************************** */
 9 
10 tan_: procedure (number) returns (float binary (27));
11 
12 /*    compute the tangent of a single-precision floating-point number    */
13 declare number float binary (27),
14           (tan, tand) builtin;
15 
16           return(tan(number));
17 
18 tand_:    entry(number) returns(float bin(27));
19           return(tand(number));
20           end;