• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright Axel Davy <davyaxel0@gmail.com>
3  * SPDX-License-Identifier: MIT
4  */
5 
6 #ifndef _NINE_FLAGS_H_
7 #define _NINE_FLAGS_H_
8 
9 #include "util/compiler.h"
10 
11 /* Incoming 32 bits calls are 4-byte aligned.
12  * We need to realign them to be able to use
13  * SSE and to work with other libraries (llvm, etc)
14  */
15 #define NINE_WINAPI WINAPI UTIL_ALIGN_STACK
16 
17 #endif /* _NINE_FLAGS_H_ */
18