release.sh: restore -jJAILDIR option
[minix.git] / lib / libc / gdtoa / strtof_vaxf.c
blob3710e62f49334d15f93bfaf8ad94a590d88e2c5d
1 /* $NetBSD: strtof_vaxf.c,v 1.5 2008/03/28 00:56:54 he Exp $ */
3 /****************************************************************
5 The author of this software is David M. Gay.
7 Copyright (C) 1998, 2000 by Lucent Technologies
8 All Rights Reserved
10 Permission to use, copy, modify, and distribute this software and
11 its documentation for any purpose and without fee is hereby
12 granted, provided that the above copyright notice appear in all
13 copies and that both that the copyright notice and this
14 permission notice and warranty disclaimer appear in supporting
15 documentation, and that the name of Lucent or any of its entities
16 not be used in advertising or publicity pertaining to
17 distribution of the software without specific, written prior
18 permission.
20 LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
21 INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
22 IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
23 SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
24 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
25 IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
26 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
27 THIS SOFTWARE.
29 ****************************************************************/
31 /* Please send bug reports to David M. Gay (dmg at acm dot org,
32 * with " at " changed at "@" and " dot " changed to "."). */
34 /* Adapted to VAX F_floating by Klaus Klein <kleink@netbsd.org>. */
36 #include "namespace.h"
37 #include "gdtoaimp.h"
39 #ifdef __weak_alias
40 __weak_alias(strtof, _strtof)
41 #endif
43 float
44 #ifdef KR_headers
45 strtof(s, sp) CONST char *s; char **sp;
46 #else
47 strtof(CONST char *s, char **sp)
48 #endif
50 static CONST FPI fpi = { 24, 1-128-1-24+1, 255-128-1-24+1, 1, SI };
51 ULong bits[1];
52 Long expt;
53 int k;
54 union { ULong L[1]; float f; } u;
56 k = strtodg(s, sp, &fpi, &expt, bits);
57 if (k == STRTOG_NoMemory) {
58 errno = ERANGE;
59 u.L[0] = Big0;
60 u.L[1] = Big1;
61 return u.f;
63 switch(k & STRTOG_Retmask) {
64 case STRTOG_NoNumber:
65 case STRTOG_Zero:
66 u.L[0] = 0;
67 break;
69 case STRTOG_Normal:
70 u.L[0] = ((bits[0] & 0x0000ffff) << 16) | /* FracLo */
71 ((bits[0] & 0x007f0000) >> 16) | /* FracHi */
72 ((expt + 128 + 1 + 23) << 7); /* Exp */
73 break;
75 case STRTOG_Infinite:
76 u.L[0] = 0xffff7fff;
77 break;
80 if (k & STRTOG_Neg)
81 u.L[0] |= 0x00008000L;
82 return u.f;