1float try_builtin_fmaxf(float x, float y) { return __builtin_fmaxf(x, y); }
2float try_builtin_fminf(float x, float y) { return __builtin_fminf(x, y); }
3
4double try_builtin_fmaxf(double x, double y) { return __builtin_fmax(x, y); }
5double try_builtin_fminf(double x, double y) { return __builtin_fmin(x, y); }
6
7extern "C" void _start() {}
8

Provided by KDAB

Privacy Policy
Learn to use CMake with our Intro Training
Find out more

source code of libc/cmake/modules/compiler_features/check_builtin_fmax_fmin.cpp