From 1ce0a32d363fa529e90b24eb4e83ca7ea871d27d Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Mon, 20 Nov 2006 20:57:06 +0000 Subject: [PATCH] (concat) [!__GNUC__]: Add prototype. --- src/ChangeLog | 4 ++++ src/fns.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 828bebf4fc3..7edc5caab76 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2006-11-20 Eli Zaretskii + + * fns.c (concat) [!__GNUC__]: Add prototype. + 2006-11-20 Kenichi Handa * fileio.c (Fread_file_name_internal): Use SBYTES (not SCHARS) to diff --git a/src/fns.c b/src/fns.c index 507bf229e47..3aa8cf4f6b4 100644 --- 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 */ -- 2.39.2