mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
7e0a09feec
This change ports APE Loader to Linux AARCH64, so that Raspberry Pi users can run programs like redbean, without the executable needing to modify itself. Progress has also slipped into this change on the issue of making progress better conforming to user expectations and industry standards regarding which symbols we're allowed to declare
17 lines
353 B
C
17 lines
353 B
C
/* clang-format off */
|
|
/* This file is distributed under the University of Illinois Open Source
|
|
* License. See LICENSE.TXT for details.
|
|
*/
|
|
|
|
__static_yoink("huge_compiler_rt_license");
|
|
|
|
#if defined(__x86_64__) || defined(_M_X64)
|
|
|
|
#include "third_party/compiler_rt/int_lib.h"
|
|
|
|
float __floatdisf(int64_t a)
|
|
{
|
|
return (float)a;
|
|
}
|
|
|
|
#endif /* __x86_64__ */
|