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

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2011-03-17 11:40:25 +0300
committerCorinna Vinschen <corinna@vinschen.de>2011-03-17 11:40:25 +0300
commitb532ee08bcf81757479e902f4b9f1944e7f13701 (patch)
tree4749c08e8c3405496925881e7d4005ad9336a07a /winsup/cygwin/crt0.c
parentd2948a681dfc4497c1ed557bd419258e0eeb041a (diff)
* crt0.c (mainCRTStartup): Move call to _feinitialise from here...
* dcrt0.cc (_dll_crt0): ...to here.
Diffstat (limited to 'winsup/cygwin/crt0.c')
-rw-r--r--winsup/cygwin/crt0.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/winsup/cygwin/crt0.c b/winsup/cygwin/crt0.c
index aa6a5f18f..c547e480f 100644
--- a/winsup/cygwin/crt0.c
+++ b/winsup/cygwin/crt0.c
@@ -1,6 +1,6 @@
/* crt0.c
- Copyright 2001, 2005, 2010 Red Hat, Inc.
+ Copyright 2001, 2005, 2010, 2011 Red Hat, Inc.
This software is a copyrighted work licensed under the terms of the
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
@@ -13,7 +13,6 @@ details. */
#include "winlean.h"
#include <sys/cygwin.h>
-#include "fenv.h"
extern int main (int argc, char **argv);
@@ -25,7 +24,6 @@ mainCRTStartup ()
#ifdef __i386__
(void)__builtin_return_address(1);
asm volatile ("andl $-16,%%esp" ::: "%esp");
- _feinitialise ();
#endif
cygwin_crt0 (main);