diff options
| author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-12-02 12:08:51 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-07 21:05:25 -0700 |
| commit | 2035e136c41f24b9b991917fd0ead512e4fd3fd8 (patch) | |
| tree | 9151d61dd60d8f1d8087e9d97b62b89e1484ccfe /expression.h | |
| parent | 34c0cd11a43671d68d47c99a895fb68dd920f0a5 (diff) | |
| download | sparse-dev-2035e136c41f24b9b991917fd0ead512e4fd3fd8.tar.gz | |
Split out the blob allocator from lib.c into allocate.c.
It's disgusting how intimate lib.c is with all the types,
and this is slowly trying to split things up a bit. Now
the intimate part is in allocate.c, but maybe we can get
to the point where each allocation user just declares its
own allocation strategy, and just uses the generic routines
in allocate.c
Diffstat (limited to 'expression.h')
| -rw-r--r-- | expression.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/expression.h b/expression.h index c0b1292d..6f244fc6 100644 --- a/expression.h +++ b/expression.h @@ -11,6 +11,8 @@ * Declarations and helper functions for expression parsing. */ +#include "allocate.h" + struct expression_list; enum expression_type { |
