diff options
| author | he <he@NetBSD.org> | 2006-03-06 18:42:58 +0000 |
|---|---|---|
| committer | he <he@NetBSD.org> | 2006-03-06 18:42:58 +0000 |
| commit | 377126348b04248336d8cf8da69d38fcdea79fa8 (patch) | |
| tree | 7e9a60dea1cd39c1616c9bad4eecf0be59c02855 /sys/arch/atari/dev | |
| parent | f656fa41eb4a793d30bdd41614deebad9ce3e277 (diff) | |
Remove another instance of the macro triplet SET/CLR/ISSET, now
found in <sys/types.h>.
Diffstat (limited to 'sys/arch/atari/dev')
| -rw-r--r-- | sys/arch/atari/dev/ser.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sys/arch/atari/dev/ser.c b/sys/arch/atari/dev/ser.c index 0ad20b2f20a..a49d70c9bdf 100644 --- a/sys/arch/atari/dev/ser.c +++ b/sys/arch/atari/dev/ser.c @@ -1,4 +1,4 @@ -/* $NetBSD: ser.c,v 1.27 2005/12/11 12:16:54 christos Exp $ */ +/* $NetBSD: ser.c,v 1.28 2006/03/06 18:42:58 he Exp $ */ /*- * Copyright (c) 1997 The NetBSD Foundation, Inc. @@ -100,7 +100,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ser.c,v 1.27 2005/12/11 12:16:54 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ser.c,v 1.28 2006/03/06 18:42:58 he Exp $"); #include "opt_ddb.h" #include "opt_mbtype.h" @@ -155,11 +155,6 @@ __KERNEL_RCSID(0, "$NetBSD: ser.c,v 1.27 2005/12/11 12:16:54 christos Exp $"); #define CONSCFLAG TTYDEF_CFLAG /* end XXX */ -/* Macros to clear/set/test flags. */ -#define SET(t, f) (t) |= (f) -#define CLR(t, f) (t) &= ~(f) -#define ISSET(t, f) ((t) & (f)) - #define splserial() spl6() /* Buffer size for character buffer */ |
