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