reactos/sdk/include/crt/corecrt.h
Timo Kreuzer 6f6b831722 [CRT] Introduce corecrt.h
Include this instead of crtdefs.h.
This is for compatibility with MS headers.
2024-10-21 14:53:29 +03:00

26 lines
369 B
C

#pragma once
#include <crtdefs.h>
#ifdef __cplusplus
extern "C" {
#endif
#ifndef _CRTRESTRICT
#define _CRTRESTRICT
#endif
#ifndef DEFINED_localeinfo_struct
typedef struct localeinfo_struct
{
pthreadlocinfo locinfo;
pthreadmbcinfo mbcinfo;
} _locale_tstruct, *_locale_t;
#define DEFINED_localeinfo_struct 1
#endif
#ifdef __cplusplus
} // extern "C"
#endif