diff options
author | Christopher Faylor <me@cgf.cx> | 2008-07-27 16:59:07 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2008-07-27 16:59:07 +0000 |
commit | b58e5f427a6905c1cefb2205c2359eef177dfb3a (patch) | |
tree | 8644077567038d8e7847f3c9b265586a26253e3a /winsup/cygwin/lib/crt0.h | |
parent | 34aa62035b0630a6d6fae9f577f10d5d191c5bb6 (diff) | |
download | cygnal-b58e5f427a6905c1cefb2205c2359eef177dfb3a.tar.gz cygnal-b58e5f427a6905c1cefb2205c2359eef177dfb3a.tar.bz2 cygnal-b58e5f427a6905c1cefb2205c2359eef177dfb3a.zip |
* mount.cc (mount_info::init): Add location where we're looking for fstab to
temporary message.
* lib/cygwin_crt0.c (cygwin_crt0): Simplify by eliminating accommodations for
ancient cygwin DLLs.
* lib/crt0.h: Include <windows.h> directly since it is needed.
Diffstat (limited to 'winsup/cygwin/lib/crt0.h')
-rw-r--r-- | winsup/cygwin/lib/crt0.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/lib/crt0.h b/winsup/cygwin/lib/crt0.h index 7bd240622..461ea9b2e 100644 --- a/winsup/cygwin/lib/crt0.h +++ b/winsup/cygwin/lib/crt0.h @@ -1,6 +1,6 @@ /* crt0.h: header file for crt0. - Copyright 2000, 2001 Red Hat, Inc. + Copyright 2000, 2001, 2008 Red Hat, Inc. This file is part of Cygwin. @@ -12,6 +12,7 @@ details. */ extern "C" { #endif +#include <windows.h> struct per_process; typedef int (*MainFunc) (int argc, char *argv[], char **env); int __stdcall _cygwin_crt0_common (MainFunc, struct per_process *); |