~ubuntu-branches/ubuntu/intrepid/parted/intrepid

« back to all changes in this revision

Viewing changes to gnulib/lib/c-strtod.c

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2008-06-24 14:31:05 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080624143105-rd7yw67a9qnvh51i
Tags: 1.8.8.git.2008.03.24-7ubuntu1
* Resynchronise with Debian (LP: #237568). Remaining changes:
  - swap-uuid.dpatch: Create UUIDs on new swap partitions.
  - gptsync.dpatch: On Intel Mac systems, write a synced MBR rather than a
    protective MBR.
  - Add -fno-stack-protector on sparc.
  - sparc-new-label.dpatch: Fix sparc disk label generation. This is
    required for LDOM and parallel installations with Solaris 10.
  - loop-partitions.dpatch: Loop devices can only have one partition, so
    don't generate device names such as "/dev/loop0p1".
  - unpartitioned-disks.dpatch: Don't try to call BLKPG ioctls on
    unpartitionable disks (only implemented for loop devices at the
    moment), as they will always fail.
  - When building with gcc-4.3, add -Wno-array-bounds to CFLAGS.
  - Cell partition tables are misdetected as pc98, so disable pc98 support
    on powerpc.
  - array-bounds.dpatch: Backport patch from git to allow building with
    gcc-4.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Convert string to double, using the C locale.
 
2
 
 
3
   Copyright (C) 2003, 2004, 2006 Free Software Foundation, Inc.
 
4
 
 
5
   This program is free software; you can redistribute it and/or modify
 
6
   it under the terms of the GNU General Public License as published by
 
7
   the Free Software Foundation; either version 2, or (at your option)
 
8
   any later version.
 
9
 
 
10
   This program is distributed in the hope that it will be useful,
 
11
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
   GNU General Public License for more details.
 
14
 
 
15
   You should have received a copy of the GNU General Public License
 
16
   along with this program; if not, write to the Free Software Foundation,
 
17
   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
18
 
 
19
/* Written by Paul Eggert.  */
 
20
 
 
21
#include <config.h>
 
22
 
 
23
#include "c-strtod.h"
 
24
 
 
25
#include <locale.h>
 
26
#include <stdlib.h>
 
27
 
 
28
#include "xalloc.h"
 
29
 
 
30
#if LONG
 
31
# define C_STRTOD c_strtold
 
32
# define DOUBLE long double
 
33
# define STRTOD_L strtold_l
 
34
#else
 
35
# define C_STRTOD c_strtod
 
36
# define DOUBLE double
 
37
# define STRTOD_L strtod_l
 
38
#endif
 
39
 
 
40
/* c_strtold falls back on strtod if strtold doesn't conform to C99.  */
 
41
#if LONG && HAVE_C99_STRTOLD
 
42
# define STRTOD strtold
 
43
#else
 
44
# define STRTOD strtod
 
45
#endif
 
46
 
 
47
DOUBLE
 
48
C_STRTOD (char const *nptr, char **endptr)
 
49
{
 
50
  DOUBLE r;
 
51
 
 
52
#ifdef LC_ALL_MASK
 
53
 
 
54
  locale_t c_locale = newlocale (LC_ALL_MASK, "C", 0);
 
55
  r = STRTOD_L (nptr, endptr, c_locale);
 
56
  freelocale (c_locale);
 
57
 
 
58
#else
 
59
 
 
60
  char *saved_locale = setlocale (LC_NUMERIC, NULL);
 
61
 
 
62
  if (saved_locale)
 
63
    {
 
64
      saved_locale = xstrdup (saved_locale);
 
65
      setlocale (LC_NUMERIC, "C");
 
66
    }
 
67
 
 
68
  r = STRTOD (nptr, endptr);
 
69
 
 
70
  if (saved_locale)
 
71
    {
 
72
      setlocale (LC_NUMERIC, saved_locale);
 
73
      free (saved_locale);
 
74
    }
 
75
 
 
76
#endif
 
77
 
 
78
  return r;
 
79
}