[GRASS-SVN] r40663 - in grass/trunk/lib: gmath gpde
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Jan 26 07:30:37 EST 2010
Author: glynn
Date: 2010-01-26 07:30:36 -0500 (Tue, 26 Jan 2010)
New Revision: 40663
Modified:
grass/trunk/lib/gmath/blas_level_3.c
grass/trunk/lib/gmath/solvers_direct.c
grass/trunk/lib/gpde/N_geom.c
grass/trunk/lib/gpde/N_gwflow.c
grass/trunk/lib/gpde/N_heatflow.c
grass/trunk/lib/gpde/N_les.c
grass/trunk/lib/gpde/N_les_assemble.c
grass/trunk/lib/gpde/N_solute_transport.c
grass/trunk/lib/gpde/N_tools.c
grass/trunk/lib/gpde/N_upwind.c
Log:
Fix #include directives:
grass/*.h headers use <...>, not "..."
include system headers before GRASS headers
Modified: grass/trunk/lib/gmath/blas_level_3.c
===================================================================
--- grass/trunk/lib/gmath/blas_level_3.c 2010-01-26 12:28:40 UTC (rev 40662)
+++ grass/trunk/lib/gmath/blas_level_3.c 2010-01-26 12:30:36 UTC (rev 40663)
@@ -21,8 +21,8 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
-#include "grass/gmath.h"
#include <grass/gis.h>
+#include <grass/gmath.h>
/*!
Modified: grass/trunk/lib/gmath/solvers_direct.c
===================================================================
--- grass/trunk/lib/gmath/solvers_direct.c 2010-01-26 12:28:40 UTC (rev 40662)
+++ grass/trunk/lib/gmath/solvers_direct.c 2010-01-26 12:30:36 UTC (rev 40663)
@@ -20,9 +20,9 @@
#include <unistd.h>
#include <stdio.h>
#include <string.h>
-#include "grass/gis.h"
-#include "grass/glocale.h"
-#include "grass/gmath.h"
+#include <grass/gis.h>
+#include <grass/gmath.h>
+#include <grass/glocale.h>
#define TINY 1.0e-20
#define COMP_PIVOT 100
Modified: grass/trunk/lib/gpde/N_geom.c
===================================================================
--- grass/trunk/lib/gpde/N_geom.c 2010-01-26 12:28:40 UTC (rev 40662)
+++ grass/trunk/lib/gpde/N_geom.c 2010-01-26 12:30:36 UTC (rev 40663)
@@ -17,7 +17,7 @@
*****************************************************************************/
-#include "grass/N_pde.h"
+#include <grass/N_pde.h>
/* *************************************************************** *
* *********** Konstruktor *************************************** *
Modified: grass/trunk/lib/gpde/N_gwflow.c
===================================================================
--- grass/trunk/lib/gpde/N_gwflow.c 2010-01-26 12:28:40 UTC (rev 40662)
+++ grass/trunk/lib/gpde/N_gwflow.c 2010-01-26 12:30:36 UTC (rev 40663)
@@ -16,7 +16,7 @@
*
*****************************************************************************/
-#include "grass/N_gwflow.h"
+#include <grass/N_gwflow.h>
/* *************************************************************** */
/* ***************** N_gwflow_data3d ***************************** */
Modified: grass/trunk/lib/gpde/N_heatflow.c
===================================================================
--- grass/trunk/lib/gpde/N_heatflow.c 2010-01-26 12:28:40 UTC (rev 40662)
+++ grass/trunk/lib/gpde/N_heatflow.c 2010-01-26 12:30:36 UTC (rev 40663)
@@ -16,4 +16,4 @@
*
*****************************************************************************/
-#include "grass/N_pde.h"
+#include <grass/N_pde.h>
Modified: grass/trunk/lib/gpde/N_les.c
===================================================================
--- grass/trunk/lib/gpde/N_les.c 2010-01-26 12:28:40 UTC (rev 40662)
+++ grass/trunk/lib/gpde/N_les.c 2010-01-26 12:30:36 UTC (rev 40663)
@@ -17,8 +17,8 @@
*****************************************************************************/
#include <stdlib.h>
-#include "grass/N_pde.h"
-#include "grass/gmath.h"
+#include <grass/N_pde.h>
+#include <grass/gmath.h>
/*!
Modified: grass/trunk/lib/gpde/N_les_assemble.c
===================================================================
--- grass/trunk/lib/gpde/N_les_assemble.c 2010-01-26 12:28:40 UTC (rev 40662)
+++ grass/trunk/lib/gpde/N_les_assemble.c 2010-01-26 12:30:36 UTC (rev 40663)
@@ -18,7 +18,7 @@
#include <math.h>
-#include "grass/N_pde.h"
+#include <grass/N_pde.h>
/* local protos */
static int make_les_entry_2d(int i, int j, int offset_i, int offset_j,
Modified: grass/trunk/lib/gpde/N_solute_transport.c
===================================================================
--- grass/trunk/lib/gpde/N_solute_transport.c 2010-01-26 12:28:40 UTC (rev 40662)
+++ grass/trunk/lib/gpde/N_solute_transport.c 2010-01-26 12:30:36 UTC (rev 40663)
@@ -16,8 +16,8 @@
*
*****************************************************************************/
-#include "grass/N_solute_transport.h"
#include <math.h>
+#include <grass/N_solute_transport.h>
/* ************************************************************************* *
* ************************************************************************* *
Modified: grass/trunk/lib/gpde/N_tools.c
===================================================================
--- grass/trunk/lib/gpde/N_tools.c 2010-01-26 12:28:40 UTC (rev 40662)
+++ grass/trunk/lib/gpde/N_tools.c 2010-01-26 12:30:36 UTC (rev 40663)
@@ -16,9 +16,9 @@
*
*****************************************************************************/
-#include "grass/N_pde.h"
-#include "grass/glocale.h"
#include <math.h>
+#include <grass/N_pde.h>
+#include <grass/glocale.h>
/*!
Modified: grass/trunk/lib/gpde/N_upwind.c
===================================================================
--- grass/trunk/lib/gpde/N_upwind.c 2010-01-26 12:28:40 UTC (rev 40662)
+++ grass/trunk/lib/gpde/N_upwind.c 2010-01-26 12:30:36 UTC (rev 40663)
@@ -17,7 +17,7 @@
*****************************************************************************/
#include <math.h>
-#include "grass/N_pde.h"
+#include <grass/N_pde.h>
/*! \brief full upwinding stabilization algorithm
More information about the grass-commit
mailing list