summaryrefslogtreecommitdiff
path: root/test/atan2.c
blob: ac6f861ee4b9ae89a7afafd12c1664f3bb9491e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
/*
 * Items: atan2(
 * Standardized-By: SuS
 * Not-Detected-by: gcc-4.4.3 + Linux
 */

#include <math.h>

main(int arg, char **argv)
{
    atan2(-23.0, 17.0);
}