diff options
author | 2005-04-20 18:33:30 +0000 | |
---|---|---|
committer | 2005-04-20 18:33:30 +0000 | |
commit | 0e02c16241179308ed32ec306f06cbaa72b5438b (patch) | |
tree | 83583946b9cd23114cd6446043e02b56363c51bc | |
parent | the linktype (DLT) should always be of type u_int. (diff) | |
download | wireguard-openbsd-0e02c16241179308ed32ec306f06cbaa72b5438b.tar.xz wireguard-openbsd-0e02c16241179308ed32ec306f06cbaa72b5438b.zip |
add the CVS_EX_OK return code to indicate everything went fine
ok joris
-rw-r--r-- | usr.bin/cvs/cvs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index a19045ecf94..4f9a8bc3fea 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.50 2005/04/12 14:58:40 joris Exp $ */ +/* $OpenBSD: cvs.h,v 1.51 2005/04/20 18:33:30 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -46,6 +46,7 @@ #define CVS_CKSUM_LEN 33 /* length of a CVS checksum string */ /* error codes */ +#define CVS_EX_OK 0 #define CVS_EX_USAGE 1 #define CVS_EX_DATA 2 #define CVS_EX_PROTO 3 |