mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-06-02 10:42:27 +00:00
Validate privileged code relationships
- Work towards improving non-optimized build support - Introduce MODE=zero which is -O0 without ASAN/UBSAN - Use system GCC when ~/.cosmo.mk has USE_SYSTEM_TOOLCHAIN=1 - Have package.com check .privileged code doesn't call non-privileged
This commit is contained in:
parent
01fd655097
commit
daf4454a06
82 changed files with 808 additions and 850 deletions
|
@ -1,10 +1,10 @@
|
|||
#define GetEnvironmentVariable(...) __imp_GetEnvironmentVariableW(__VA_ARGS__)
|
||||
extern typeof(GetEnvironmentVariable) *const
|
||||
__imp_GetEnvironmentVariableW __msabi;
|
||||
extern typeof(GetEnvironmentVariable) *const __imp_GetEnvironmentVariableW
|
||||
__msabi;
|
||||
|
||||
#define SetEnvironmentVariable(...) __imp_SetEnvironmentVariableW(__VA_ARGS__)
|
||||
extern typeof(SetEnvironmentVariable) *const
|
||||
__imp_SetEnvironmentVariableW __msabi;
|
||||
extern typeof(SetEnvironmentVariable) *const __imp_SetEnvironmentVariableW
|
||||
__msabi;
|
||||
|
||||
#define GetPriorityClass(...) __imp_GetPriorityClass(__VA_ARGS__)
|
||||
extern typeof(GetPriorityClass) *const __imp_GetPriorityClass __msabi;
|
||||
|
@ -17,3 +17,4 @@ extern typeof(GetCurrentProcessId) *const __imp_GetCurrentProcessId __msabi;
|
|||
|
||||
extern typeof(FormatMessage) *const __imp_FormatMessageW __msabi;
|
||||
extern typeof(SetLastError) *const __imp_SetLastError __msabi;
|
||||
extern typeof(FormatMessage) *const __imp_FormatMessage __msabi;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue