* 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.
This commit is contained in:
Christopher Faylor
2008-07-27 16:59:07 +00:00
parent 34aa62035b
commit b58e5f427a
4 changed files with 16 additions and 17 deletions

View File

@ -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 *);