aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-08-26 00:44:42 +0000
committerRichard M. Stallman <[email protected]>1994-08-26 00:44:42 +0000
commit5125ca93206317580631d26d9a475412d5c36ec8 (patch)
tree969772ecf7d9f6b9db22ee960001548841cb400d
parent1d6ce4b0474cb653974fa4669a34b79f3439b41d (diff)
(DEFUN): Check USE_NONANSI_DEFUN.
-rw-r--r--src/lisp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 0fa1d28017..d720944d8b 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -861,7 +861,7 @@ typedef unsigned char UCHAR;
`doc' is documentation for the user.
*/
-#ifndef __STDC__
+#if !defined (__STDC__) || defined (USE_NONANSI_DEFUN)
#define DEFUN(lname, fnname, sname, minargs, maxargs, prompt, doc) \
Lisp_Object fnname (); \
struct Lisp_Subr sname = {fnname, minargs, maxargs, lname, prompt, 0}; \