From: Roland McGrath Date: Fri, 1 May 1992 18:36:48 +0000 (+0000) Subject: Formerly m68k/fpu/__logb.c.~3~ X-Git-Tag: glibc-2.16-ports-before-merge~4365 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fbe5d07fad19e9f0f1fee583dba53229790a4001;p=thirdparty%2Fglibc.git Formerly m68k/fpu/__logb.c.~3~ --- diff --git a/sysdeps/m68k/fpu/logb.c b/sysdeps/m68k/fpu/logb.c index 614581e7869..3bc3a4e7019 100644 --- a/sysdeps/m68k/fpu/logb.c +++ b/sysdeps/m68k/fpu/logb.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -19,6 +19,8 @@ Cambridge, MA 02139, USA. */ #include #include +#ifdef __GNUC__ + /* Return the base 2 signed integral exponent of X. */ double DEFUN(__logb, (x), double x) @@ -35,3 +37,7 @@ DEFUN(__logb, (x), double x) return x; } + +#else +#include +#endif