summaryrefslogtreecommitdiffstats
path: root/Tools/modulator/Templates/object_new
blob: 1817a5516adf5ce9d166aa072d0bec5669c80c5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12

static $abbrev$object *
new$abbrev$object()
{
	$abbrev$object *self;
	
	self = NEWOBJ($abbrev$object, &$Abbrev$type);
	if (self == NULL)
		return NULL;
	/* XXXX Add your own initializers here */
	return self;
}