forked from xt-sys/exectos
14 lines
378 B
C
14 lines
378 B
C
/**
|
|
* PROJECT: ExectOS
|
|
* COPYRIGHT: See COPYING.md in the top level directory
|
|
* FILE: xtoskrnl/rtl/globals.c
|
|
* DESCRIPTION: Kernel runtime library global variables
|
|
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
|
*/
|
|
|
|
#include <xtos.h>
|
|
|
|
|
|
/* This is required for floating numbers to keep LLVM happy */
|
|
int _fltused = 0xFEEDBULL;
|