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
2b7e8799
Commit
2b7e8799
authored
May 24, 2000
by
Gerd Moellmann
Browse files
(setpgrp): Don't define if USG and BSD_PGRPS are not defined.
parent
879bde83
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
0 deletions
+6
-0
src/callproc.c
src/callproc.c
+2
-0
src/emacs.c
src/emacs.c
+2
-0
src/sysdep.c
src/sysdep.c
+2
-0
No files found.
src/callproc.c
View file @
2b7e8799
...
...
@@ -91,8 +91,10 @@ extern char **environ;
#endif
#ifdef HAVE_SETPGID
#if !defined (USG) || defined (BSD_PGRPS)
#define setpgrp setpgid
#endif
#endif
#define max(a, b) ((a) > (b) ? (a) : (b))
...
...
src/emacs.c
View file @
2b7e8799
...
...
@@ -65,8 +65,10 @@ Boston, MA 02111-1307, USA. */
#endif
#ifdef HAVE_SETPGID
#if !defined (USG) || defined (BSD_PGRPS)
#define setpgrp setpgid
#endif
#endif
extern
void
malloc_warning
();
extern
void
set_time_zone_rule
();
...
...
src/sysdep.c
View file @
2b7e8799
...
...
@@ -76,8 +76,10 @@ extern int h_errno;
#endif
#ifdef HAVE_SETPGID
#if !defined (USG) || defined (BSD_PGRPS)
#define setpgrp setpgid
#endif
#endif
/* Get SI_SRPC_DOMAIN, if it is available. */
#ifdef HAVE_SYS_SYSTEMINFO_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