diff options
author | Ed Schouten <ed@FreeBSD.org> | 2011-06-02 20:02:42 +0000 |
---|---|---|
committer | Ed Schouten <ed@FreeBSD.org> | 2011-06-02 20:02:42 +0000 |
commit | b0a04aaa595ba76468e521f12727a872d144d6d0 (patch) | |
tree | 51db692a6c937b68c7180d996af6bb7952b4b55d /lib/floatunsisf.c | |
parent | f170b6928b38a264ce005e5fa80d428364b6f659 (diff) |
Notes
Diffstat (limited to 'lib/floatunsisf.c')
-rw-r--r-- | lib/floatunsisf.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/floatunsisf.c b/lib/floatunsisf.c index 48eff93a2fc3..14ef10307f79 100644 --- a/lib/floatunsisf.c +++ b/lib/floatunsisf.c @@ -12,10 +12,15 @@ // mode. // //===----------------------------------------------------------------------===// +#include "abi.h" #define SINGLE_PRECISION #include "fp_lib.h" +#include "int_lib.h" + +ARM_EABI_FNALIAS(ui2f, floatunsisf); + fp_t __floatunsisf(unsigned int a) { const int aWidth = sizeof a * CHAR_BIT; |