summaryrefslogtreecommitdiffstats
path: root/expr.h
diff options
context:
space:
mode:
Diffstat (limited to 'expr.h')
-rw-r--r--expr.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/expr.h b/expr.h
index c8c8ce0..c25d1ca 100644
--- a/expr.h
+++ b/expr.h
@@ -33,11 +33,6 @@
#include <time.h>
/**
- * A command line expression.
- */
-struct expr;
-
-/**
* Possible types of numeric comparison.
*/
enum cmp_flag {
@@ -95,6 +90,9 @@ enum size_unit {
SIZE_PB,
};
+/**
+ * A command line expression.
+ */
struct expr {
/** The function that evaluates this expression. */
eval_fn *eval;