[GRASS-SVN] r40093 - grass/branches/develbranch_6/raster/r.drain

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Dec 20 15:47:31 EST 2009


Author: neteler
Date: 2009-12-20 15:47:29 -0500 (Sun, 20 Dec 2009)
New Revision: 40093

Modified:
   grass/branches/develbranch_6/raster/r.drain/main.c
Log:
Use <fcntl.h>, not <sys/fcntl.h> (backport)

Modified: grass/branches/develbranch_6/raster/r.drain/main.c
===================================================================
--- grass/branches/develbranch_6/raster/r.drain/main.c	2009-12-20 19:38:25 UTC (rev 40092)
+++ grass/branches/develbranch_6/raster/r.drain/main.c	2009-12-20 20:47:29 UTC (rev 40093)
@@ -34,7 +34,7 @@
 /* for using the "open" statement */
 #include <sys/types.h>
 #include <sys/stat.h>
-#include <sys/fcntl.h>
+#include <fcntl.h>
 
 /* for using the close statement */
 #include <unistd.h>



More information about the grass-commit mailing list