Print this page
5261 libm should stop using synonyms.h
5298 fabs is 0-sized, confuses dis(1) and others
Reviewed by: Josef 'Jeff' Sipek <jeffpc@josefsipek.net>
Approved by: Gordon Ross <gwr@nexenta.com>
@@ -25,11 +25,11 @@
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
-#pragma weak remquo = __remquo
+#pragma weak __remquo = remquo
/* INDENT OFF */
/*
* double remquo(double x, double y, int *quo) return remainder(x,y) and an
* integer pointer quo such that *quo = N mod {2**31}, where N is the
@@ -38,11 +38,10 @@
* remquo call internal fmodquo
*/
/* INDENT ON */
#include "libm.h"
-#include "libm_synonyms.h"
#include "libm_protos.h"
#include <math.h> /* fabs() */
#include <sys/isa_defs.h>
#if defined(_BIG_ENDIAN)