mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:35:47 +00:00
[REACTOS] Use standard conforming names
- Use _alloca instead of non-standard alloca - Use _TCHAR instead of non-standard TCHAR - Use _off_t instead of deprecated off_t - Use _O_BINARY instead of O_BINARY
This commit is contained in:
parent
1de09c477c
commit
b707be90a1
10 changed files with 41 additions and 40 deletions
|
@ -211,7 +211,7 @@ __tmainCRTStartup (void)
|
|||
/* We need to make sure that this function is build with frame-pointer
|
||||
and that we align the stack to 16 bytes for the sake of SSE ops in main
|
||||
or in functions inlined into main. */
|
||||
lpszCommandLine = (_TCHAR *) alloca (32);
|
||||
lpszCommandLine = (_TCHAR *) _alloca (32);
|
||||
memset (lpszCommandLine, 0xcc, 32);
|
||||
#ifdef __GNUC__
|
||||
asm __volatile__ ("andl $-16, %%esp" : : : "%esp");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue