summaryrefslogtreecommitdiff
path: root/src/spline.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/spline.c')
-rw-r--r--src/spline.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/spline.c b/src/spline.c
index 4ce9e0366..c6296cd95 100644
--- a/src/spline.c
+++ b/src/spline.c
@@ -75,13 +75,13 @@ Non-numeric data in the input is ignored.
/* #define DOUBLE */
#ifdef DOUBLE
-#define double real; /* Type used for data storage. */
-#define IFMT "%F" /* Input format. */
-#define OFMT "%18.14g %18.14g\n" /* Output format. */
+# define double real; /* Type used for data storage. */
+# define IFMT "%F" /* Input format. */
+# define OFMT "%18.14g %18.14g\n" /* Output format. */
#else
-#define float real; /* Type used for data storage. */
-#define IFMT "%f" /* Input format. */
-#define OFMT "%8.5g %8.5g\n" /* Output format. */
+# define float real; /* Type used for data storage. */
+# define IFMT "%f" /* Input format. */
+# define OFMT "%8.5g %8.5g\n" /* Output format. */
#endif
/* Numerical constants: These may be machine and/or precision dependent. */