quakeforge/tools/qfcc/source/expr.c
2001-06-15 19:38:43 +00:00

10 lines
120 B
C

#include <stdlib.h>
#include "qfcc.h"
#include "expr.h"
expr_t *
new_expr ()
{
return calloc (1, sizeof (expr_t));
}