autoupdate
[gnulib.git] / lib / fmodl.c
index 0c2542f..8a9636f 100644 (file)
@@ -1,5 +1,5 @@
 /* Remainder.
-   Copyright (C) 2011-2012 Free Software Foundation, Inc.
+   Copyright (C) 2011-2013 Free Software Foundation, Inc.
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -29,11 +29,7 @@ fmodl (long double x, long double y)
 
 #else
 
-long double
-fmodl (long double x, long double y)
-{
-  long double i = truncl (x / y);
-  return fmal (- i, y, x);
-}
+# define USE_LONG_DOUBLE
+# include "fmod.c"
 
 #endif