Cygwin: strptime: add release note
[newlib-cygwin.git] / winsup / cygwin / lib / crt0.h
blobe599b44934ecf36cff92a27cd9790d417cb56118
1 /* crt0.h: header file for crt0.
3 This file is part of Cygwin.
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. */
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
13 #include "winlean.h"
14 struct per_process;
15 typedef int (*MainFunc) (int argc, char *argv[], char **env);
16 int _cygwin_crt0_common (MainFunc, struct per_process *);
17 PVOID dll_dllcrt0 (HMODULE, struct per_process *);
19 #ifdef __cplusplus
21 #endif