mirror of
https://github.com/reactos/reactos.git
synced 2025-04-20 20:36:35 +00:00
19 lines
322 B
C++
19 lines
322 B
C++
![]() |
//
|
||
|
// mainCRTStartup.c
|
||
|
//
|
||
|
// Copyright (c) 2024 Timo Kreuzer
|
||
|
//
|
||
|
// Implementation of ANSI executable entry point.
|
||
|
//
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
//
|
||
|
|
||
|
#include "commonCRTStartup.hpp"
|
||
|
|
||
|
extern "C" unsigned long mainCRTStartup(void*)
|
||
|
{
|
||
|
__security_init_cookie();
|
||
|
|
||
|
return __commonCRTStartup<decltype(main)>();
|
||
|
}
|