]> git.eshelyaron.com Git - emacs.git/commitdiff
(P_): Define based on PROTOTYPES, not __STDC__.
authorDave Love <fx@gnu.org>
Wed, 8 Mar 2000 18:46:21 +0000 (18:46 +0000)
committerDave Love <fx@gnu.org>
Wed, 8 Mar 2000 18:46:21 +0000 (18:46 +0000)
(memory_warnings): Declare using POINTER_TYPE.

src/lisp.h

index 64daefe464943fb640765df469bac3974ec3623f..697fd939ddc8d02d71e8ccb7dff511d7e212950c 100644 (file)
@@ -20,7 +20,7 @@ the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.  */
 
 /* Declare the prototype for a general external function.  */
-#if defined (__STDC__) || defined (WINDOWSNT)
+#if defined (PROTOTYPES) || defined (WINDOWSNT)
 #define P_(proto) proto
 #else
 #define P_(proto) ()
@@ -2087,12 +2087,8 @@ extern void syms_of_xdisp P_ ((void));
 extern void init_xdisp P_ ((void));
 
 /* Defined in vm-limit.c.  */
-#ifdef __STDC__
-extern void memory_warnings P_ ((void *, void (*warnfun) ()));
-#else
-extern void memory_warnings P_ ((char *, void (*warnfun) ()));
-#endif
-                               
+extern void memory_warnings P_ ((POINTER_TYPE *, void (*warnfun) ()));
+
 /* Defined in alloc.c */
 extern void allocate_string_data P_ ((struct Lisp_String *, int, int));
 extern void uninterrupt_malloc P_ ((void));