zile: fix gcc5 build issues

Signed-off-by: Ted Hess <thess@kitschensync.net>
This commit is contained in:
Ted Hess
2015-11-23 09:01:56 -05:00
parent e8bd00dd39
commit 43a71474f6
2 changed files with 18 additions and 2 deletions
@@ -0,0 +1,11 @@
--- a/lib/stdio.in.h
+++ b/lib/stdio.in.h
@@ -733,7 +733,7 @@ _GL_CXXALIASWARN (gets);
/* It is very rare that the developer ever has full control of stdin,
so any use of gets warrants an unconditional warning. Assume it is
always declared, since it is required by C89. */
-_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead");
+#define gets(a) fgets( a, sizeof(*(a)), stdin)
#endif