/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* bos720 src/bos/usr/ccs/bin/lint/llib-lm 1.5                            */
/*                                                                        */
/* Licensed Materials - Property of IBM                                   */
/*                                                                        */
/* COPYRIGHT International Business Machines Corp. 1985,1989              */
/* All Rights Reserved                                                    */
/*                                                                        */
/* US Government Users Restricted Rights - Use, duplication or            */
/* disclosure restricted by GSA ADP Schedule Contract with IBM Corp.      */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
/* @(#)14       1.5  src/bos/usr/ccs/bin/lint/llib-lm, cmdprog, bos720 5/7/03 16:36:07 */
/*
 * COMPONENT_NAME: (CMDPROG) Programming Utilities
 *
 * FUNCTIONS: 
 *
 * ORIGINS: 27; 10
 *
 * (C) COPYRIGHT International Business Machines Corp. 1985, 1999
 * All Rights Reserved
 * Licensed Materials - Property of IBM
 *
 * US Government Users Restricted Rights - Use, duplication or
 * disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
 */

/*NOTUSED*/
/*NOTDEFINED*/

#include <math.h>

/* BESSEL(3M) */
double	j0(double x) { return (x); }
double	j1(double x) { return (x); }
double	jn(int n, double x) { return (x); }
double	y0(double x) { return (x); }
double	y1(double x) { return (x); }
double	yn(int n, double x) { return (x); }
/* ERF(3M) */
double	erf(double x) { return (x); }
double	erfc(double x) { return (x); }
/* EXP(3M) */
double	exp(double x) { return (x); }
double	log(double x) { return (x); }
double	log10(double x) { return (x); }
double	pow(double x, double y)  { return (x); }
double	sqrt(double x) { return (x); }
/* FLOOR(3M) */
double	floor(double x) { return (x); }
double	ceil(double x) { return (x); }
double	fmod(double x, double y) { return (x); }
double	fabs(double x) { return (x); }
/* GAMMA(3M) */
double	gamma(double x) { return (x); }
/* HYPOT(3M) */
double	hypot(double x, double y) { return (x); }
/* MATHERR(3M) */
int	matherr(struct exception *p) { return (0); }
/* SINH(3M) */
double	sinh(double x) { return (x); }
double	cosh(double x) { return (x); }
double	tanh(double x) { return (x); }
/* TRIG(3M) */
double	sin(double x) { return (x); }
double	cos(double x) { return (x); }
double	tan(double x) { return (x); }
double	asin(double x) { return (x); }
double	acos(double x) { return (x); }
double	atan(double x) { return (x); }
double	atan2(double x, double y) { return (x); }

double	asinh(double x) { return (x); }
double	acosh(double x) { return (x); }
double	atanh(double x) { return (x); }
double	cbrt(double x) { return (x); }
double	nearest(double x) { return (x); }
double	trunc(double x) { return (x); }
#ifdef _POWER  /* on IA64, this is defined in math.h */
int	ilogb(double x) { return (0); }
#endif
#Commenting out per defect 381697
#int	isnan(double x) { return (0); }
double	log1p(double x) { return (x); }
#ifdef _POWER  /* on IA64, this is defined in math.h */
double	nextafter(double x,double y) { return (x); }
#endif
int	unordered(double x,double y) { return (0); }