Mercurial > emacs
diff src/process.h @ 70209:7077caf6dc5a
Include headers for pid_t.
| author | Stefan Monnier <monnier@iro.umontreal.ca> |
|---|---|
| date | Mon, 24 Apr 2006 13:10:19 +0000 |
| parents | 2d844bbbccd4 |
| children | c7ba95ddeb1d 2ecafc6d5db7 |
line wrap: on
line diff
--- a/src/process.h Mon Apr 24 06:35:58 2006 +0000 +++ b/src/process.h Mon Apr 24 13:10:19 2006 +0000 @@ -19,6 +19,12 @@ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ +#ifdef HAVE_SYS_TYPES_H +#include <sys/types.h> +#endif +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif /* This structure records information about a subprocess or network connection.
