1: /*
   2: **  PASS LONG CONSTANT
   3: **
   4: **	This dipshit little routine just allows you to specify
   5: **	a long constant.  If called as:
   6: **
   7: **		l = longconst(4, 3);
   8: **
   9: **	the long variable l will be assigned a value which is
  10: **	4 * 2 ** 16 + 3.
  11: **
  12: **	Note that longconst MUST be typed as
  13: **
  14: **		extern long	longconst();
  15: */
  16: 
  17: long longconst(l)
  18: long    l;
  19: {
  20:     return (l);
  21: }

Defined functions

longconst defined in line 17; used 4 times
Last modified: 1980-12-17
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 1435
Valid CSS Valid XHTML 1.0 Strict