ecvt.c (7c478bd9) ecvt.c (7257d1b4)
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 *
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
13 *
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
19 *
20 * CDDL HEADER END
21 */
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
22/* Copyright (c) 1988 AT&T */
23/* All Rights Reserved */
24
21
25
26/*
22/*
27 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
23 * Copyright 2008 Sun Microsystems, Inc. All rights reserved.
28 * Use is subject to license terms.
29 */
30
24 * Use is subject to license terms.
25 */
26
27/* Copyright (c) 1988 AT&T */
28/* All Rights Reserved */
29
31#pragma ident "%Z%%M% %I% %E% SMI"
32
33/*
34 * ecvt converts to decimal
35 * the number of digits is specified by ndigit
36 * decpt is set to the position of the decimal point
37 * sign is set to 0 for positive, 1 for negative
38 *
39 */
40
30#pragma ident "%Z%%M% %I% %E% SMI"
31
32/*
33 * ecvt converts to decimal
34 * the number of digits is specified by ndigit
35 * decpt is set to the position of the decimal point
36 * sign is set to 0 for positive, 1 for negative
37 *
38 */
39
41#pragma weak ecvt = _ecvt
42#pragma weak fcvt = _fcvt
43#pragma weak qecvt = _qecvt
44#pragma weak qfcvt = _qfcvt
45#pragma weak qgcvt = _qgcvt
40#pragma weak _ecvt = ecvt
41#pragma weak _fcvt = fcvt
46
42
47#include "synonyms.h"
43#include "lint.h"
48#include <sys/types.h>
49#include <stdlib.h>
50#include <floatingpoint.h>
51#include "tsd.h"
52
53char *
54ecvt(number, ndigits, decpt, sign)
55 double number;

--- 69 unchanged lines hidden ---
44#include <sys/types.h>
45#include <stdlib.h>
46#include <floatingpoint.h>
47#include "tsd.h"
48
49char *
50ecvt(number, ndigits, decpt, sign)
51 double number;

--- 69 unchanged lines hidden ---