]> sourceware.org Git - newlib-cygwin.git/blob - winsup/cygwin/lib/cygwin_crt0.c
7020a639dd306f4bf0474c8c7f6ef575152df0ab
[newlib-cygwin.git] / winsup / cygwin / lib / cygwin_crt0.c
1 /* cygwin_crt0.c: crt0 for cygwin
2
3 This file is part of Cygwin.
4
5 This software is a copyrighted work licensed under the terms of the
6 Cygwin license. Please consult the file "CYGWIN_LICENSE" for
7 details. */
8
9 #undef __INSIDE_CYGWIN__
10 #include "crt0.h"
11
12 extern void _dll_crt0 ()
13 __declspec (dllimport) __attribute__ ((noreturn));
14
15 /* for main module */
16 void
17 cygwin_crt0 (MainFunc f)
18 {
19 _cygwin_crt0_common (f, NULL);
20 _dll_crt0 (); /* Jump into the dll, never to return */
21 }
This page took 0.039287 seconds and 6 git commands to generate.