this repo has no description
1/*
2 * math_errhandling.c
3 * armLibm
4 *
5 * Created by iano on 11/9/07.
6 * Copyright 2007 __MyCompanyName__. All rights reserved.
7 *
8 * This is to support the C99 required math_errhandling symbol
9 */
10
11#include "math.h"
12
13int __math_errhandling ( void )
14{
15 return MATH_ERREXCEPT;
16}
17