regex: also remove dependency on HAVE_WCSCOLL
[gnulib.git] / lib / remainderl.c
index b43592a..a370fda 100644 (file)
@@ -1,5 +1,5 @@
 /* Remainder.
-   Copyright (C) 2012 Free Software Foundation, Inc.
+   Copyright (C) 2012-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 @@ remainderl (long double x, long double y)
 
 #else
 
-long double
-remainderl (long double x, long double y)
-{
-  long double i = roundl (x / y);
-  return fmal (- i, y, x);
-}
+# define USE_LONG_DOUBLE
+# include "remainder.c"
 
 #endif