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
d3eb3bfa
Commit
d3eb3bfa
authored
Jun 02, 2000
by
Dave Love
Browse files
Conditionally include stdlib.h, unistd.h.
(VFORK_RETURN_TYPE): Remove.
parent
9821d77a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
src/sysdep.c
src/sysdep.c
+7
-4
No files found.
src/sysdep.c
View file @
d3eb3bfa
...
...
@@ -22,6 +22,9 @@ Boston, MA 02111-1307, USA. */
#include <config.h>
#include <signal.h>
#include <setjmp.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "lisp.h"
#include "blockinput.h"
...
...
@@ -75,6 +78,10 @@ extern int h_errno;
#include <unistd.h>
#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_SETPGID
#if !defined (USG) || defined (BSD_PGRPS)
#define setpgrp setpgid
...
...
@@ -205,10 +212,6 @@ struct utimbuf {
#endif
#endif
#ifndef VFORK_RETURN_TYPE
#define VFORK_RETURN_TYPE int
#endif
/* LPASS8 is new in 4.3, and makes cbreak mode provide all 8 bits. */
#ifndef LPASS8
#define LPASS8 0
...
...
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