mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-31 13:10:34 +00:00
11 lines
120 B
C
11 lines
120 B
C
|
#include <stdlib.h>
|
||
|
|
||
|
#include "qfcc.h"
|
||
|
#include "expr.h"
|
||
|
|
||
|
expr_t *
|
||
|
new_expr ()
|
||
|
{
|
||
|
return calloc (1, sizeof (expr_t));
|
||
|
}
|