diff options
author | Dan Winship <danw@gnome.org> | 2013-10-19 13:03:58 -0400 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2013-11-20 09:16:16 -0500 |
commit | 6e4a7fca431f53fdfd89afbe956212229cf52200 (patch) | |
tree | 8b492a3d5f272c3efbcd8e876c66819d020e9513 /glib/gfileutils.c | |
parent | 7f5b2901cf5bea290c11133dad16850176178dad (diff) | |
download | glib-6e4a7fca431f53fdfd89afbe956212229cf52200.tar.gz |
Require C90 compliance
Assume all supported platforms implement C90, and therefore they
(correctly) implement atexit(), memmove(), setlocale(), strerror(),
and vprintf(), and have <float.h> and <limits.h>.
(Also remove the configure check testing that "do ... while (0)" works
correctly; the non-do/while-based version of G_STMT_START and
G_STMT_END was removed years ago, but the check remained. Also, remove
some checks that configure.ac claimed were needed for libcharset, but
aren't actually used.)
Note that removing the g_memmove() function is not an ABI break even
on systems where g_memmove() was previously not a macro, because it
was never marked GLIB_AVAILABLE_IN_ALL or listed in glib.symbols, so
it would have been glib-internal since 2004.
https://bugzilla.gnome.org/show_bug.cgi?id=710519
Diffstat (limited to 'glib/gfileutils.c')
-rw-r--r-- | glib/gfileutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/gfileutils.c b/glib/gfileutils.c index 88a647d59..90fb40501 100644 --- a/glib/gfileutils.c +++ b/glib/gfileutils.c @@ -2419,7 +2419,7 @@ g_path_get_dirname (const gchar *file_name) len = (guint) 1 + base - file_name; base = g_new (gchar, len + 1); - g_memmove (base, file_name, len); + memmove (base, file_name, len); base[len] = 0; return base; |