- Implement remaining functions in rtl/i386/math_asm.S
[reactos.git] / reactos / lib / rtl / rtl.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS System Libraries
4 * FILE: lib/rtl/rtl.h
5 * PURPOSE: Run-Time Libary Header
6 * PROGRAMMER: Alex Ionescu
7 */
8
9 /* INCLUDES ******************************************************************/
10
11 /* We're a core NT DLL, we don't import syscalls */
12 #define WIN32_NO_STATUS
13 #define _INC_SWPRINTF_INL_
14
15 /* C Headers */
16 #include <stdio.h>
17
18 /* PSDK/NDK Headers */
19 #include <windows.h>
20 #include <ndk/ntndk.h>
21
22 /* Internal RTL header */
23 #include <reactos/helper.h>
24 #include "rtlp.h"
25
26 /* EOF */