changeset 70209:7077caf6dc5a

Include headers for pid_t.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 24 Apr 2006 13:10:19 +0000
parents d96cefbe70c2
children 83aa98a17215
files src/ChangeLog src/process.h
diffstat 2 files changed, 17 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Mon Apr 24 06:35:58 2006 +0000
+++ b/src/ChangeLog	Mon Apr 24 13:10:19 2006 +0000
@@ -1,3 +1,7 @@
+2006-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+	* process.h: Include headers for pid_t.
+
 2006-04-24  Kim F. Storm  <storm@cua.dk>
 
 	* xdisp.c (fill_stretch_glyph_string): Set s->nchars = 1 for code which
@@ -74,8 +78,8 @@
 
 2006-04-20  Lars Hansen  <larsh@soem.dk>
 
-	* textprop.c (Fremove_list_of_text_properties): Ensure
-	modify_region is called only when buffer is modified and that
+	* textprop.c (Fremove_list_of_text_properties):
+	Ensure modify_region is called only when buffer is modified and that
 	signal_after_change is allways called in that case.
 
 	* print.c (PRINTFINISH): Call signal_after_change.
@@ -93,8 +97,8 @@
 
 	* xmenu.c (restore_menu_items, save_menu_items): New fns.
 	(set_frame_menubar): Use save_menu_items.  Save updated vector in
-	the frame before unwinding it.  Don't use unuse_menu_items.  Don't
-	use discard_menu_items.
+	the frame before unwinding it.  Don't use unuse_menu_items.
+	Don't use discard_menu_items.
 	(digest_single_submenu): Abort if an item is not in a pane.
 	(init_menu_items): Put the error check at the top.
 
@@ -166,8 +170,7 @@
 2006-04-13  Kenichi Handa  <handa@m17n.org>
 
 	* coding.c (setup_coding_system): Fix previous change.
-	(encode_coding): If eol_type is not yet decided, use
-	system_eol_type.
+	(encode_coding): If eol_type is not yet decided, use system_eol_type.
 	(shrink_encoding_region): If eol_type is not yet decided and
 	system_eol_type is not LF, don't shrink.
 
@@ -267,8 +270,8 @@
 	within ||.  Add explicit braces to avoid ambiguous `else'.
 	(dump_glyph_row): Remove label for `inverse_p' from legend.
 
-	* xfaces.c (Finternal_merge_in_global_face, try_font_list): Add
-	explicit braces to avoid ambiguous `else'.
+	* xfaces.c (Finternal_merge_in_global_face, try_font_list):
+	Add explicit braces to avoid ambiguous `else'.
 
 2006-04-11  Micha,Ak(Bl Cadilhac  <michael.cadilhac@lrde.org>  (tiny change)
 
--- 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.