From: Jason Rumney Date: Sun, 11 Jun 2000 20:58:22 +0000 (+0000) Subject: Define POINTER_TYPE, PTR, PROTOTYPES and __P. X-Git-Tag: emacs-pretest-21.0.90~3399 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dc5ed26ee92571d49dff56ad1660bdc6fbb0bbd6;p=emacs.git Define POINTER_TYPE, PTR, PROTOTYPES and __P. --- diff --git a/nt/config.nt b/nt/config.nt index cbc3b198ebc..1fd38d3f3d4 100644 --- a/nt/config.nt +++ b/nt/config.nt @@ -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 during configure. */ #ifndef NOT_C_CODE #ifdef HAVE_STRING_H