source: rtems/cpukit/libmisc/stringto/stringtodouble.c @ 56f61c7d

4.104.115
Last change on this file since 56f61c7d was 56f61c7d, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/28/10 at 15:20:32

Add HAVE_CONFIG_H support to let files receive configure defines.

  • Property mode set to 100644
File size: 572 bytes
Line 
1/*
2 *  COPYRIGHT (c) 2009.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#ifdef HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16/*
17 *  Instantiate an error checking wrapper for strtod (double)
18 */
19#define STRING_TO_FLOAT
20#define STRING_TO_TYPE double
21#define STRING_TO_NAME rtems_string_to_double
22#define STRING_TO_METHOD strtod
23#define STRING_TO_MAX HUGE_VAL
24#include "stringto_template.h"
25
Note: See TracBrowser for help on using the repository browser.