diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-04-21 07:06:26 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-04-21 07:06:26 +0000 |
commit | 42b452576997fa5b9ba93173e604f33282a21e0a (patch) | |
tree | 507608f017ea0576b4fdc8d970f771a8482192fe /usr.bin/rcs/rcsprog.h | |
parent | 7b6b828bce9af8a0403b80be8756df910dd668e2 (diff) |
switch -p handling to bitwise flags; OK ray@.
Diffstat (limited to 'usr.bin/rcs/rcsprog.h')
-rw-r--r-- | usr.bin/rcs/rcsprog.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/rcs/rcsprog.h b/usr.bin/rcs/rcsprog.h index e9c471a0bed..15945103a27 100644 --- a/usr.bin/rcs/rcsprog.h +++ b/usr.bin/rcs/rcsprog.h @@ -1,4 +1,4 @@ -/* $OpenBSD: rcsprog.h,v 1.50 2006/04/19 06:53:41 xsa Exp $ */ +/* $OpenBSD: rcsprog.h,v 1.51 2006/04/21 07:06:25 xsa Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -63,12 +63,12 @@ #define FORCE (1<<17) #define INTERACTIVE (1<<18) #define NEWFILE (1<<19) -#define PRESERVETIME (1<<20) -#define QUIET (1<<21) +#define PIPEOUT (1<<20) +#define PRESERVETIME (1<<21) +#define QUIET (1<<22) extern char *__progname; extern const char rcs_version[]; -extern int pipeout; extern int rcs_optind; extern char *rcs_optarg; |