summaryrefslogtreecommitdiff
path: root/native/jni/s_fabs.c
diff options
context:
space:
mode:
Diffstat (limited to 'native/jni/s_fabs.c')
-rw-r--r--native/jni/s_fabs.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/native/jni/s_fabs.c b/native/jni/s_fabs.c
deleted file mode 100644
index 973d8fdda..000000000
--- a/native/jni/s_fabs.c
+++ /dev/null
@@ -1,25 +0,0 @@
-
-/* @(#)s_fabs.c 1.3 95/01/18 */
-/*
- * ====================================================
- * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
- *
- * Developed at SunSoft, a Sun Microsystems, Inc. business.
- * Permission to use, copy, modify, and distribute this
- * software is freely granted, provided that this notice
- * is preserved.
- * ====================================================
- */
-
-/*
- * fabs(x) returns the absolute value of x.
- */
-
-#include "fdlibm.h"
-
-jdouble
-fabs (jdouble x)
-{
- __HI(x) &= 0x7fffffff;
- return x;
-}