blob: 3047dd8faa391771bb8ba0bf5e3008ad383dc978 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <sparc-ifunc.h>
SPARC_ASM_VIS3_IFUNC(ceilf)
weak_alias (__ceilf, ceilf)
# undef weak_alias
# define weak_alias(a, b)
#define __ceilf __ceilf_generic
#include "../s_ceilf.S"
|