From 134468d4a50c43b9adf615e7af2dbb417e63618f Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Fri, 20 Nov 2015 12:33:09 +0200 Subject: A few more checks for converter. --- tools/ac_converter.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tools') diff --git a/tools/ac_converter.py b/tools/ac_converter.py index 7408864..c7dbd37 100755 --- a/tools/ac_converter.py +++ b/tools/ac_converter.py @@ -213,17 +213,21 @@ function_data = \ 'HAVE_ATAN2': ('atan2', 'math.h'), 'HAVE_ACOS': ('acos', 'math.h'), 'HAVE_ASIN': ('asin', 'math.h'), + 'HAVE_ASINH': ('asinh', 'math.h'), 'HAVE_CEIL': ('ceil', 'math.h'), 'HAVE_COPYSIGN': ('copysign', 'math.h'), 'HAVE_COS': ('cos', 'math.h'), + 'HAVE_COSH': ('cosh', 'math.h'), 'HAVE_COSF': ('cosf', 'math.h'), 'HAVE_FABS': ('fabs', 'math.h'), 'HAVE_FLOOR': ('floor', 'math.h'), + 'HAVE_ISINF': ('isinf', 'math.h'), 'HAVE_LOG': ('log', 'math.h'), 'HAVE_POW': ('pow', 'math.h'), 'HAVE_SCALBN': ('scalbn', 'math.h'), 'HAVE_SIN': ('sin', 'math.h'), 'HAVE_SINF': ('sinf', 'math.h'), + 'HAVE_SINH': ('sinh', 'math.h'), 'HAVE_SQRT': ('sqrt', 'math.h'), 'HAVE_FSEEKO': ('fseeko', 'stdio.h'), 'HAVE_FSEEKO64': ('fseeko64', 'stdio.h'), -- cgit v1.1