xref: /csrg-svn/usr.bin/f77/libF77/d_asin.c (revision 22842)
110451Sdlw /*
2*22842Skre  * Copyright (c) 1980 Regents of the University of California.
3*22842Skre  * All rights reserved.  The Berkeley software License Agreement
4*22842Skre  * specifies the terms and conditions for redistribution.
5*22842Skre  *
6*22842Skre  *	@(#)d_asin.c	5.1	06/07/85
710451Sdlw  */
810451Sdlw 
910451Sdlw double d_asin(x)
1010451Sdlw double *x;
1110451Sdlw {
1210451Sdlw double asin();
1310451Sdlw return( asin(*x) );
1410451Sdlw }
15