cpython/Tools/modulator/Templates/object_new
1995-03-02 14:05:29 +00:00

12 lines
212 B
Text

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;
}