Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Zwinkau
libfirm
Commits
47054ed6
Commit
47054ed6
authored
Feb 26, 2010
by
Michael Beck
Browse files
Fixed inverted condition: Linux have strtold, not windows (and cygwin).
[r27227]
parent
5d5a9c9c
Changes
1
Hide whitespace changes
Inline
Side-by-side
ir/tv/fltcalc.c
View file @
47054ed6
/*
* Copyright (C) 1995-200
8
University of Karlsruhe. All right reserved.
* Copyright (C) 1995-20
1
0 University of Karlsruhe. All right reserved.
*
* This file is part of libFirm.
*
...
...
@@ -43,7 +43,7 @@
#include "xmalloc.h"
#if defined(HAVE_LONG_DOUBLE)
&& !
defined(__CYGWIN__)
#if
!
defined(HAVE_LONG_DOUBLE)
||
defined(__CYGWIN__)
/* No strtold on windows and no replacement yet */
#define strtold(s, e) strtod(s, e)
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment