Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
dc5ed26e
Commit
dc5ed26e
authored
Jun 11, 2000
by
Jason Rumney
Browse files
Define POINTER_TYPE, PTR, PROTOTYPES and __P.
parent
d4bd593f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
nt/config.nt
nt/config.nt
+20
-0
No files found.
nt/config.nt
View file @
dc5ed26e
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment