* netbsd386.c (N_SET_FLAGS): Delete the old definition.

This commit is contained in:
David MacKenzie 1994-03-23 22:30:14 +00:00
parent ea936fd77b
commit 1f1ed32d6d
1 changed files with 0 additions and 2 deletions

View File

@ -51,8 +51,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#define N_SET_MACHTYPE(exec,machtype) \
((exec).a_info = \
(((exec).a_info & ~(0x3ff<<16)) | (((machtype)&0xff) << 16)))
#define N_SET_FLAGS(exec, flags) \
((exec).a_info = ((exec).a_info & 0xffff) | (flags & 0xffff))
#define N_SET_FLAGS(exec, flags) \
((exec).a_info = \
(((exec).a_info & ~(0x3f<<26)) | (((flags)&0x3f) << 26)))