Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/sys/types.h,v rcsdiff: /ftp/cvs/cvsroot/src/sys/sys/types.h,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.100 retrieving revision 1.101 diff -u -p -r1.100 -r1.101 --- src/sys/sys/types.h 2018/07/08 21:59:12 1.100 +++ src/sys/sys/types.h 2018/07/10 07:40:42 1.101 @@ -1,4 +1,4 @@ -/* $NetBSD: types.h,v 1.100 2018/07/08 21:59:12 pgoyette Exp $ */ +/* $NetBSD: types.h,v 1.101 2018/07/10 07:40:42 martin Exp $ */ /*- * Copyright (c) 1982, 1986, 1991, 1993, 1994 @@ -342,7 +342,7 @@ struct tty; struct uio; #endif -#ifdef _KERNEL +#if defined(_KERNEL) || defined(_STANDALONE) #define SET(t, f) ((t) |= (f)) #define ISSET(t, f) ((t) & (f)) #define CLR(t, f) ((t) &= ~(f))