mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 05:00:27 +00:00

These headers come with the MS compiler. Some of them are standard, like emmintrin.h, others are MS specific like crtdefs.h This separation will allow using MS CRT headers. Eventually it can allow compiling with the compilers' runtime headers.
16 lines
342 B
C
16 lines
342 B
C
/*
|
|
* PROJECT: ReactOS PSDK
|
|
* LICENSE: MIT (https://spdx.org/licenses/MIT)
|
|
* PURPOSE: Standard Annotation Language (SAL) definitions
|
|
* COPYRIGHT: 2021 - Jérôme Gardou
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/* Include MS version first */
|
|
#include "ms_sal.h"
|
|
|
|
/* Some overrides with GCC attributes */
|
|
#ifdef __GNUC__
|
|
#include "gcc_sal.h"
|
|
#endif
|