1 /* 2 * Copyright (c) 1980 Regents of the University of California. 3 * All rights reserved. The Berkeley software License Agreement 4 * specifies the terms and conditions for redistribution. 5 * 6 * @(#)machdep.h 5.1 (Berkeley) 06/05/85 7 */ 8 9 #ifdef ADDR32 10 #define pushaddr push4 11 #define popaddr (char *)pop4 12 #endif ADDR32 13 #ifdef ADDR16 14 #define pushaddr push2 15 #define popaddr (char *)pop2 16 #endif ADDR16 17