[GRASS-SVN] r40022 - in grass/trunk/raster: r.drain r.fill.dir
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Dec 15 14:32:44 EST 2009
Author: glynn
Date: 2009-12-15 14:32:42 -0500 (Tue, 15 Dec 2009)
New Revision: 40022
Modified:
grass/trunk/raster/r.drain/main.c
grass/trunk/raster/r.fill.dir/main.c
Log:
Use <fcntl.h>, not <sys/fcntl.h>
Modified: grass/trunk/raster/r.drain/main.c
===================================================================
--- grass/trunk/raster/r.drain/main.c 2009-12-15 13:52:14 UTC (rev 40021)
+++ grass/trunk/raster/r.drain/main.c 2009-12-15 19:32:42 UTC (rev 40022)
@@ -35,7 +35,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>
Modified: grass/trunk/raster/r.fill.dir/main.c
===================================================================
--- grass/trunk/raster/r.fill.dir/main.c 2009-12-15 13:52:14 UTC (rev 40021)
+++ grass/trunk/raster/r.fill.dir/main.c 2009-12-15 19:32:42 UTC (rev 40022)
@@ -42,7 +42,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