1*5bb525f4SRobert Mustacchi /* 2*5bb525f4SRobert Mustacchi * This file and its contents are supplied under the terms of the 3*5bb525f4SRobert Mustacchi * Common Development and Distribution License ("CDDL"), version 1.0. 4*5bb525f4SRobert Mustacchi * You may only use this file in accordance with the terms of version 5*5bb525f4SRobert Mustacchi * 1.0 of the CDDL. 6*5bb525f4SRobert Mustacchi * 7*5bb525f4SRobert Mustacchi * A full copy of the text of the CDDL should have accompanied this 8*5bb525f4SRobert Mustacchi * source. A copy of the CDDL is also available via the Internet at 9*5bb525f4SRobert Mustacchi * http://www.illumos.org/license/CDDL. 10*5bb525f4SRobert Mustacchi */ 11*5bb525f4SRobert Mustacchi 12*5bb525f4SRobert Mustacchi /* 13*5bb525f4SRobert Mustacchi * Copyright (c) 2019, Joyent, Inc. 14*5bb525f4SRobert Mustacchi */ 15*5bb525f4SRobert Mustacchi 16*5bb525f4SRobert Mustacchi #include <complex.h> 17*5bb525f4SRobert Mustacchi 18*5bb525f4SRobert Mustacchi /* 19*5bb525f4SRobert Mustacchi * Test floating point types. Unfortunately neither gcc nor clang support the 20*5bb525f4SRobert Mustacchi * imaginary keyword which means that we cannot test it. 21*5bb525f4SRobert Mustacchi */ 22*5bb525f4SRobert Mustacchi 23*5bb525f4SRobert Mustacchi float a; 24*5bb525f4SRobert Mustacchi double b; 25*5bb525f4SRobert Mustacchi long double c; 26*5bb525f4SRobert Mustacchi float complex d; 27*5bb525f4SRobert Mustacchi double complex e; 28*5bb525f4SRobert Mustacchi long double complex f; 29