1: #include "../h/rt.h"
   2: 
   3: /*
   4:  * defany(dp,def) - if dp is null, default to def.
   5:  */
   6: 
   7: defany(dp, def)
   8: struct descrip *dp, *def;
   9:    {
  10:    DeRef(*dp)
  11:    if (NULLDESC(*dp)) {
  12:       *dp = *def;
  13:       return 1;
  14:       }
  15:    return 0;
  16:    }

Defined functions

defany defined in line 7; never used
Last modified: 1984-11-18
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 688
Valid CSS Valid XHTML 1.0 Strict