aboutsummaryrefslogtreecommitdiffstats
path: root/src/fns.c
diff options
context:
space:
mode:
authorEli Zaretskii2006-11-20 20:57:06 +0000
committerEli Zaretskii2006-11-20 20:57:06 +0000
commit1ce0a32d363fa529e90b24eb4e83ca7ea871d27d (patch)
tree0a380a9a3628cbccce516a10d2cdc44f8879d204 /src/fns.c
parent03e3eb4d58a754ea5240e16c56cb48518b8ca64e (diff)
downloademacs-1ce0a32d363fa529e90b24eb4e83ca7ea871d27d.tar.gz
emacs-1ce0a32d363fa529e90b24eb4e83ca7ea871d27d.zip
(concat) [!__GNUC__]: Add prototype.
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c2
1 files changed, 2 insertions, 0 deletions
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. */)
392 the arguments for the invocations of this function, whereas it 392 the arguments for the invocations of this function, whereas it
393 expects these values on the stack. */ 393 expects these values on the stack. */
394static Lisp_Object concat () __attribute__((noinline)); 394static Lisp_Object concat () __attribute__((noinline));
395#else /* !__GNUC__ */
396static Lisp_Object concat ();
395#endif 397#endif
396 398
397/* ARGSUSED */ 399/* ARGSUSED */