aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.h
diff options
context:
space:
mode:
authorStefan Monnier2006-04-24 13:10:19 +0000
committerStefan Monnier2006-04-24 13:10:19 +0000
commita9ec73170e2ed5316e72875666ab01fd1f1e9043 (patch)
tree2da7cad6abfd69372e7402b196cf247195da76b3 /src/process.h
parentb841df8f0b91138477e33bb74b6244a8cf97a26a (diff)
downloademacs-a9ec73170e2ed5316e72875666ab01fd1f1e9043.tar.gz
emacs-a9ec73170e2ed5316e72875666ab01fd1f1e9043.zip
Include headers for pid_t.
Diffstat (limited to 'src/process.h')
-rw-r--r--src/process.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/process.h b/src/process.h
index c4b4281fedf..b585515d6b1 100644
--- a/src/process.h
+++ b/src/process.h
@@ -19,6 +19,12 @@ along with GNU Emacs; see the file COPYING. If not, write to
19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 19the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20Boston, MA 02110-1301, USA. */ 20Boston, MA 02110-1301, USA. */
21 21
22#ifdef HAVE_SYS_TYPES_H
23#include <sys/types.h>
24#endif
25#ifdef HAVE_UNISTD_H
26#include <unistd.h>
27#endif
22 28
23/* This structure records information about a subprocess 29/* This structure records information about a subprocess
24 or network connection. 30 or network connection.