diff options
Diffstat (limited to 'dimension/parse.h')
-rw-r--r-- | dimension/parse.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dimension/parse.h b/dimension/parse.h index 2dd31be..b55588b 100644 --- a/dimension/parse.h +++ b/dimension/parse.h @@ -17,6 +17,9 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. * *************************************************************************/ +#ifndef PARSE_H +#define PARSE_H + #include "../libdimension/dimension.h" typedef enum { @@ -59,3 +62,5 @@ void dmnsn_print_astree_sexpr(FILE *file, const dmnsn_array *astree); /* Returns a readable name for a token type (ex. DMNSN_T_FLOAT -> float) */ const char *dmnsn_astnode_string(dmnsn_astnode_type astnode_type); + +#endif /* PARSE_H */ |