1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-25 23:10:47 -08:00

(concat) [!__GNUC__]: Add prototype.

This commit is contained in:
Eli Zaretskii 2006-11-20 20:57:06 +00:00
parent 03e3eb4d58
commit 1ce0a32d36
2 changed files with 6 additions and 0 deletions

View 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

View file

@ -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 */