Formerly m68k/fpu/__drem.c.~3~

This commit is contained in:
Roland McGrath 1992-05-01 18:36:46 +00:00
parent 43c6e47ffa
commit e198c4817b

View File

@ -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. This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -23,7 +23,7 @@ Cambridge, MA 02139, USA. */
#undef drem #undef drem
double double
DEFUN(drem, (x, y), double x AND double y) DEFUN(__drem, (x, y), double x AND double y)
{ {
return __drem(x, y); return ____drem(x, y);
} }