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