diff options
| author | Paul Eggert | 2012-09-23 15:25:22 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-09-23 15:25:22 -0700 |
| commit | afea8a8abd2f9ffa46bc0434db70a571318383cf (patch) | |
| tree | e95f7cd7f913a61e190738bb5403882d86976783 /src/callproc.c | |
| parent | 18e27ea822e42697a32a9757e7931004b86b1188 (diff) | |
| download | emacs-afea8a8abd2f9ffa46bc0434db70a571318383cf.tar.gz emacs-afea8a8abd2f9ffa46bc0434db70a571318383cf.zip | |
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/>. */ | |||
| 51 | #include "process.h" | 51 | #include "process.h" |
| 52 | #include "syssignal.h" | 52 | #include "syssignal.h" |
| 53 | #include "systty.h" | 53 | #include "systty.h" |
| 54 | #include "syswait.h" | ||
| 54 | #include "blockinput.h" | 55 | #include "blockinput.h" |
| 55 | #include "frame.h" | 56 | #include "frame.h" |
| 56 | #include "termhooks.h" | 57 | #include "termhooks.h" |