Commit 3e06027d by Richard Kenner

(NULL_PTR): Define as void * if STDC.

From-SVN: r1612
parent df62f951
......@@ -126,8 +126,12 @@ typedef struct { unsigned :16, :16, :16; } vms_ino_t;
#endif
#ifndef NULL_PTR
#ifdef __STDC__
#define NULL_PTR (void *) NULL
#else
#define NULL_PTR (char *) NULL
#endif
#endif
#ifndef INCLUDE_LEN_FUDGE
#define INCLUDE_LEN_FUDGE 0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment