|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ T m ┃
Length: 1218 (0x4c2) Types: TextFile Names: »machine.h«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─ ⟦this⟧ »EUUGD11/gnu-31mar87/bison/machine.h«
/* Define machine-dependencies for bison, Copyright (C) 1984 Bob Corbett and Free Software Foundation, Inc. BISON is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY. No author or distributor accepts responsibility to anyone for the consequences of using it or for whether it serves any particular purpose or works at all, unless he says so in writing. Refer to the BISON General Public License for full details. Everyone is granted permission to copy, modify and redistribute BISON, but only under the conditions described in the BISON General Public License. A copy of this license is supposed to have been given to you along with BISON so you can know your rights and responsibilities. It should be in a file named COPYING. Among other things, the copyright notice and this notice must be preserved on all copies. In other words, you are welcome to use, share and improve this program. You are forbidden to forbid anyone else to use, share and improve what you give them. Help stamp out software-hoarding! */ #define MAXSHORT 32767 #define MINSHORT -32768 #define BITS_PER_WORD 32 #define WORDSIZE(n) (((n) + 31) / 32) #define SETBIT(x, i) ((x)[(i)>>5] |= (1<<((i) & 31)))