]> git.eshelyaron.com Git - emacs.git/commitdiff
Define POINTER_TYPE, PTR, PROTOTYPES and __P.
authorJason Rumney <jasonr@gnu.org>
Sun, 11 Jun 2000 20:58:22 +0000 (20:58 +0000)
committerJason Rumney <jasonr@gnu.org>
Sun, 11 Jun 2000 20:58:22 +0000 (20:58 +0000)
nt/config.nt

index cbc3b198ebcee92be5ae4f7f42d5965ae6983309..1fd38d3f3d4beddb324e9601548aeee4a4645ba1 100644 (file)
@@ -412,6 +412,26 @@ extern char *getenv ();
 #define BITS_PER_LONG 32
 #endif
 
+#ifndef POINTER_TYPE
+#define POINTER_TYPE void
+#endif
+
+#ifndef PTR
+#define PTR POINTER_TYPE *
+#endif
+
+#ifndef PROTOTYPES
+#define PROTOTYPES 1
+#endif
+
+#ifndef __P
+#if defined PROTOTYPES
+#define __P(args) args
+#else
+#define __P(args) ()
+#endif
+#endif
+
 /* Don't include <string.h> during configure.  */
 #ifndef NOT_C_CODE
 #ifdef HAVE_STRING_H