Subversion Repositories filter_foundry

Compare Revisions

Regard whitespace Rev 197 → Rev 198

/trunk/node.c
48,7 → 48,7
struct node *p;
int i;
 
if(NEW(p)){
if( (p = (struct node*)malloc(sizeof(struct node))) ){
#ifdef DEBUG
// fprintf(stderr,"NEW(%#x)\n",p);
++allocs;