diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2020-05-31 16:06:07 +0200 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2020-05-31 17:09:23 +0200 |
commit | 2d5cf2b4c4b11b2df01363133be80fe25b79252d (patch) | |
tree | b393eeb50596ffbfbb5f106626e4d4eecfe36917 /gtk/gtkentry.c | |
parent | c5829bd0e2134ed9f05fe9d6fbe1f3156a00352e (diff) | |
download | gtk+-2d5cf2b4c4b11b2df01363133be80fe25b79252d.tar.gz |
Drop fallback-c89.c
We require a C compiler supporting C99 now. The main purpose of
these fallbacks was for MSVC. From what I can see this is now all supported
by MSVC 2015+ anyway.
The only other change this includes is to replace isnanf() with the
(type infering) C99 isnan() macro, because MSVC doesn't provide isnanf().
Diffstat (limited to 'gtk/gtkentry.c')
-rw-r--r-- | gtk/gtkentry.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c index 7a30849846..3bb4178da6 100644 --- a/gtk/gtkentry.c +++ b/gtk/gtkentry.c @@ -75,8 +75,6 @@ #include <cairo-gobject.h> #include <string.h> -#include "fallback-c89.c" - /** * SECTION:gtkentry * @Short_description: A single line text entry field |