glibc/sysdeps/ia64/fpu/s_matherrl.c
Mike Frysinger d5efd131d4 ia64: move from main tree
This is a simple copy of the last version of ia64 in the main tree.
It does not work as-is, but serves as a basis for follow up changes
to restore it to working order.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2012-04-22 15:09:03 -04:00

34 lines
707 B
C

/* Derived from: */
/*
* ====================================================
* Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
*
* Developed at SunPro, a Sun Microsystems, Inc. business.
* Permission to use, copy, modify, and distribute this
* software is freely granted, provided that this notice
* is preserved.
* ====================================================
*/
#include "math.h"
#include "math_private.h"
#include "libm_support.h"
#ifdef __STDC__
int
weak_function
__matherrl(struct exceptionl *x)
#else
int
weak_function
__matherrl(x)
struct exceptionl *x;
#endif
{
int n=0;
if(x->arg1!=x->arg1) return 0;
return n;
}
weak_alias (__matherrl, matherrl)