xref: /csrg-svn/usr.bin/f77/libF77/d_atn2.c (revision 22845)
110453Sdlw /*
2*22845Skre  * Copyright (c) 1980 Regents of the University of California.
3*22845Skre  * All rights reserved.  The Berkeley software License Agreement
4*22845Skre  * specifies the terms and conditions for redistribution.
5*22845Skre  *
6*22845Skre  *	@(#)d_atn2.c	5.1	06/07/85
710453Sdlw  */
810453Sdlw 
910453Sdlw double d_atn2(x,y)
1010453Sdlw double *x, *y;
1110453Sdlw {
1210453Sdlw double atan2();
1310453Sdlw return( atan2(*x,*y) );
1410453Sdlw }
15