Reactos
at master 18 lines 322 B view raw
1// 2// mainCRTStartup.c 3// 4// Copyright (c) 2024 Timo Kreuzer 5// 6// Implementation of ANSI executable entry point. 7// 8// SPDX-License-Identifier: MIT 9// 10 11#include "commonCRTStartup.hpp" 12 13extern "C" unsigned long mainCRTStartup(void*) 14{ 15 __security_init_cookie(); 16 17 return __commonCRTStartup<decltype(main)>(); 18}