about summary refs log tree commit diff
path: root/converter/other
diff options
context:
space:
mode:
Diffstat (limited to 'converter/other')
-rw-r--r--converter/other/pamtosvg/epsilon.c (renamed from converter/other/pamtosvg/epsilon-equal.c)2
-rw-r--r--converter/other/pamtosvg/epsilon.h (renamed from converter/other/pamtosvg/epsilon-equal.h)6
2 files changed, 4 insertions, 4 deletions
diff --git a/converter/other/pamtosvg/epsilon-equal.c b/converter/other/pamtosvg/epsilon.c
index 46d630c5..d0c06560 100644
--- a/converter/other/pamtosvg/epsilon-equal.c
+++ b/converter/other/pamtosvg/epsilon.c
@@ -2,7 +2,7 @@
 
 #include <math.h>
 
-#include "epsilon-equal.h"
+#include "epsilon.h"
 
 /* Numerical errors sometimes make a floating point number just slightly
    larger or smaller than its true value.  When it matters, we need to
diff --git a/converter/other/pamtosvg/epsilon-equal.h b/converter/other/pamtosvg/epsilon.h
index fa0437cd..c8e7c8bc 100644
--- a/converter/other/pamtosvg/epsilon-equal.h
+++ b/converter/other/pamtosvg/epsilon.h
@@ -1,7 +1,7 @@
 /* epsilon-equal.h: define an error resist compare. */
 
-#ifndef EPSILON_EQUAL_H
-#define EPSILON_EQUAL_H
+#ifndef EPSILON_H
+#define EPSILON_H
 
 #include "pm_c_util.h"
 
@@ -16,5 +16,5 @@ bool epsilon_equal(float const v1,
 
 #define REAL_EPSILON 0.00001
 
-#endif /* not EPSILON_EQUAL_H */
+#endif