[UCRT:FLOAT] Add _fltused

This commit is contained in:
Timo Kreuzer 2024-10-28 19:17:56 +02:00
parent 4462342076
commit 055875fbd8
3 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,11 @@
//
// _fltused.c
//
// Copyright (c) 2024 Timo Kreuzer
//
// Implementation of _fltused.
//
// SPDX-License-Identifier: MIT
//
int _fltused = 0x9875;

View file

@ -0,0 +1,4 @@
list(APPEND UCRT_FLOAT_SOURCES
float/_fltused.c
)