wez             Mon Sep 30 06:18:58 2002 EDT

  Modified files:              
    /php4/ext/session   mod_files.c 
  Log:
  Add header file required for pread/pwrite (on my system at least).
  
  
Index: php4/ext/session/mod_files.c
diff -u php4/ext/session/mod_files.c:1.80 php4/ext/session/mod_files.c:1.81
--- php4/ext/session/mod_files.c:1.80   Wed Sep 25 08:38:45 2002
+++ php4/ext/session/mod_files.c        Mon Sep 30 06:18:57 2002
@@ -16,7 +16,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: mod_files.c,v 1.80 2002/09/25 12:38:45 sas Exp $ */
+/* $Id: mod_files.c,v 1.81 2002/09/30 10:18:57 wez Exp $ */
 
 #include "php.h"
 
@@ -38,6 +38,10 @@
 
 #include <fcntl.h>
 #include <errno.h>
+
+#if HAVE_UNISTD_H
+#include <unistd.h>
+#endif
 
 #include "php_session.h"
 #include "mod_files.h"



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to