Files
Arquivotheca.SunOS-4.1.3/lib/libc/gen/common/_Q_itoq.c
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

24 lines
337 B
C

#ifndef lint
static char sccsid[] = "@(#)_Q_itoq.c 1.1 92/07/30 SMI";
#endif
/*
* Copyright (c) 1988 by Sun Microsystems, Inc.
*/
#include "_Qquad.h"
#include "_Qglobals.h"
#define FUNC itoq
QUAD
_Q_/**/FUNC/**/(x)
int x;
{
unpacked px;
QUAD q;
_fp_unpack(&px,&x,fp_op_integer);
_fp_pack(&px,&q,fp_op_extended);
return q;
}