diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index cccf7f75fe0..24786d0e777 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -89,6 +89,10 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 89 | #include <resolv.h> | 89 | #include <resolv.h> |
| 90 | #endif | 90 | #endif |
| 91 | 91 | ||
| 92 | #ifdef HAVE_UTIL_H | ||
| 93 | #include <util.h> | ||
| 94 | #endif | ||
| 95 | |||
| 92 | #endif /* subprocesses */ | 96 | #endif /* subprocesses */ |
| 93 | 97 | ||
| 94 | #include "lisp.h" | 98 | #include "lisp.h" |
| @@ -116,7 +120,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 116 | #if defined (USE_GTK) || defined (HAVE_GCONF) | 120 | #if defined (USE_GTK) || defined (HAVE_GCONF) |
| 117 | #include "xgselect.h" | 121 | #include "xgselect.h" |
| 118 | #endif /* defined (USE_GTK) || defined (HAVE_GCONF) */ | 122 | #endif /* defined (USE_GTK) || defined (HAVE_GCONF) */ |
| 119 | 123 | #ifdef HAVE_NS | |
| 124 | #include "nsterm.h" | ||
| 125 | #endif | ||
| 120 | extern int timers_run; | 126 | extern int timers_run; |
| 121 | 127 | ||
| 122 | Lisp_Object Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname, Qtpgid; | 128 | Lisp_Object Qeuid, Qegid, Qcomm, Qstate, Qppid, Qpgrp, Qsess, Qttname, Qtpgid; |