Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin_crt0.c « lib « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: deed1a054a82cd29bf0ec292f891f6abd8abf0e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* crt0.cc: crt0 for libc

   Copyright 2000 Cygnus Solutions.

This file is part of Cygwin.

This software is a copyrighted work licensed under the terms of the
Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
details. */

#include <windows.h>
#include "crt0.h"

extern void __stdcall dll_crt0 (void)  __declspec (dllimport);

/* for main module */
void
cygwin_crt0 (MainFunc f)
{
  _cygwin_crt0_common (f);

 /* Jump into the dll. */
  dll_crt0 ();
}