1*bb6c193eSAndrew Turner /*- 2*bb6c193eSAndrew Turner * Copyright (c) 2013 Andrew Turner <andrew@FreeBSD.ORG> 3*bb6c193eSAndrew Turner * All rights reserved. 4*bb6c193eSAndrew Turner * 5*bb6c193eSAndrew Turner * Redistribution and use in source and binary forms, with or without 6*bb6c193eSAndrew Turner * modification, are permitted provided that the following conditions 7*bb6c193eSAndrew Turner * are met: 8*bb6c193eSAndrew Turner * 1. Redistributions of source code must retain the above copyright 9*bb6c193eSAndrew Turner * notice, this list of conditions and the following disclaimer. 10*bb6c193eSAndrew Turner * 2. Redistributions in binary form must reproduce the above copyright 11*bb6c193eSAndrew Turner * notice, this list of conditions and the following disclaimer in the 12*bb6c193eSAndrew Turner * documentation and/or other materials provided with the distribution. 13*bb6c193eSAndrew Turner * 14*bb6c193eSAndrew Turner * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15*bb6c193eSAndrew Turner * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16*bb6c193eSAndrew Turner * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17*bb6c193eSAndrew Turner * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18*bb6c193eSAndrew Turner * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19*bb6c193eSAndrew Turner * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20*bb6c193eSAndrew Turner * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21*bb6c193eSAndrew Turner * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22*bb6c193eSAndrew Turner * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23*bb6c193eSAndrew Turner * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24*bb6c193eSAndrew Turner * SUCH DAMAGE. 25*bb6c193eSAndrew Turner * 26*bb6c193eSAndrew Turner * $FreeBSD$ 27*bb6c193eSAndrew Turner */ 28*bb6c193eSAndrew Turner 29*bb6c193eSAndrew Turner #define FENV_MANGLE(x) __vfp_ ##x 30*bb6c193eSAndrew Turner #include "fenv-mangle.h" 31*bb6c193eSAndrew Turner #define __ARM_PCS_VFP 32*bb6c193eSAndrew Turner #include "fenv.c" 33*bb6c193eSAndrew Turner 34