diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-04-30 18:44:45 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-04-30 18:44:45 +0000 |
commit | 314bee8994b145d5f603c50e93ebc9e623d1e038 (patch) | |
tree | 8d2fdcab0abfca30591466b647f7bed7f4ec3a3c /lib/libutil | |
parent | f057f6a7a526107809303433c6ac5ba363ec1081 (diff) |
Add OPENDEV_BLCK
Diffstat (limited to 'lib/libutil')
-rw-r--r-- | lib/libutil/util.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libutil/util.h b/lib/libutil/util.h index dba5e6f0509..a1eee32b110 100644 --- a/lib/libutil/util.h +++ b/lib/libutil/util.h @@ -1,4 +1,4 @@ -/* $OpenBSD: util.h,v 1.9 1999/07/20 16:38:57 jakob Exp $ */ +/* $OpenBSD: util.h,v 1.10 2000/04/30 18:44:44 millert Exp $ */ /* $NetBSD: util.h,v 1.2 1996/05/16 07:00:22 thorpej Exp $ */ /*- @@ -59,7 +59,8 @@ * opendev() specific operation flags. */ #define OPENDEV_PART 0x01 /* Try to open the raw partition. */ -#define OPENDEV_DRCT 0x02 /* Try to open the device directly. */ +#define OPENDEV_DRCT 0x02 /* Obsolete (now default behavior). */ +#define OPENDEV_BLCK 0x04 /* Open block, not character device. */ __BEGIN_DECLS char *fparseln __P((FILE *, size_t *, size_t *, const char[3], int)); |