quakeforge/tools/qfcc/source/expr.c

11 lines
120 B
C
Raw Normal View History

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