OSDN Git Service

Initial revision
[pf3gnuchains/pf3gnuchains3x.git] / winsup / mingw / CRTinit.c
1 /*
2  * CRTinit.c
3  *
4  * A dummy version of _CRT_INIT for MS compatibility. Programs, or more often
5  * dlls, which use the static version of the MSVC run time are supposed to
6  * call _CRT_INIT to initialize the run time library in DllMain. This does
7  * not appear to be necessary when using crtdll or the dll versions of the
8  * MSVC runtime, so the dummy call simply does nothing.
9  *
10  * Contributors:
11  *  Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
12  *
13  *  THIS SOFTWARE IS NOT COPYRIGHTED
14  *
15  *  This source code is offered for use in the public domain. You may
16  *  use, modify or distribute it freely.
17  *
18  *  This code is distributed in the hope that it will be useful but
19  *  WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
20  *  DISCLAMED. This includes but is not limited to warrenties of
21  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
22  *
23  * $Revision$
24  * $Author$
25  * $Date$
26  *
27  */
28
29 void
30 _CRT_INIT ()
31 {
32 }