2 Proprietary Rand Corporation
, 1981.
3 Further distribution of
this software
4 subject to the terms of the Rand
17 register struct node
*np
;
20 if(def_flags
& DEFMOD
) {
21 save
= signal(SIGINT
, SIG_IGN
);
22 if((out
= fopen(defpath
, "w")) == NULL
) {
23 fprintf(stderr
, "Can't create %s!!\n", defpath
);
26 for(np
= m_defs
; np
; np
= np
->n_next
)
27 fprintf(out
, "%s: %s\n", np
->n_name
, np
->n_field
);
29 VOID
signal(SIGINT
, save
);