]> code.delx.au - gnu-emacs/commitdiff
(concat) [!__GNUC__]: Add prototype.
authorEli Zaretskii <eliz@gnu.org>
Mon, 20 Nov 2006 20:57:06 +0000 (20:57 +0000)
committerEli Zaretskii <eliz@gnu.org>
Mon, 20 Nov 2006 20:57:06 +0000 (20:57 +0000)
src/ChangeLog
src/fns.c

index 828bebf4fc3e20522195b2c49e6a61c2a1216d82..7edc5caab767e0fc172a060b708b908ba4135e8a 100644 (file)
@@ -1,3 +1,7 @@
+2006-11-20  Eli Zaretskii  <eliz@gnu.org>
+
+       * fns.c (concat) [!__GNUC__]: Add prototype.
+
 2006-11-20  Kenichi Handa  <handa@m17n.org>
 
        * fileio.c (Fread_file_name_internal): Use SBYTES (not SCHARS) to
index 507bf229e47e0297dd37213ca1a1647c597a255a..3aa8cf4f6b4a01d617a05c726f0702e7613b6c8d 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -392,6 +392,8 @@ Symbols are also allowed; their print names are used instead.  */)
    the arguments for the invocations of this function, whereas it
    expects these values on the stack.  */
 static Lisp_Object concat () __attribute__((noinline));
+#else  /* !__GNUC__ */
+static Lisp_Object concat ();
 #endif
 
 /* ARGSUSED */