diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-09-23 15:25:22 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-09-23 15:25:22 -0700 |
commit | afea8a8abd2f9ffa46bc0434db70a571318383cf (patch) | |
tree | e95f7cd7f913a61e190738bb5403882d86976783 /src/callproc.c | |
parent | 18e27ea822e42697a32a9757e7931004b86b1188 (diff) | |
download | emacs-afea8a8abd2f9ffa46bc0434db70a571318383cf.tar.gz |
Move pid_t related decls out of lisp.h.
* lisp.h, syswait.h (record_child_status_change, wait_for_termination)
(interruptible_wait_for_termination):
Move these decls from lisp.h to syswait.h, since they use pid_t.
Needed on FreeBSD; see Herbert J. Skuhra in
<http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
* callproc.c: Include syswait.h.
Diffstat (limited to 'src/callproc.c')
-rw-r--r-- | src/callproc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/callproc.c b/src/callproc.c index fc3eb943433..b33882e54c2 100644 --- a/src/callproc.c +++ b/src/callproc.c @@ -51,6 +51,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #include "process.h" #include "syssignal.h" #include "systty.h" +#include "syswait.h" #include "blockinput.h" #include "frame.h" #include "termhooks.h" |