summaryrefslogtreecommitdiffstats
path: root/expr.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2017-10-21 16:02:30 -0400
committerTavian Barnes <tavianator@tavianator.com>2017-10-21 16:08:14 -0400
commit4a08c0300cf6b0ee3bb5f755007641635ba21f9d (patch)
tree4fcce4cf80bc6575eb053c6691398d04be1eb917 /expr.h
parent4e38f139f92b8b3729f82c37f0904c2b77d3eb58 (diff)
downloadbfs-4a08c0300cf6b0ee3bb5f755007641635ba21f9d.tar.xz
parse: Keep track of what files are already open
Fixes #22
Diffstat (limited to 'expr.h')
-rw-r--r--expr.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/expr.h b/expr.h
index c0e2b92..0eba0da 100644
--- a/expr.h
+++ b/expr.h
@@ -219,9 +219,7 @@ void dump_expr(CFILE *cfile, const struct expr *expr, bool verbose);
/**
* Free an expression tree.
- *
- * @return 0 if successful, -1 on error.
*/
-int free_expr(struct expr *expr);
+void free_expr(struct expr *expr);
#endif // EXPR_H