=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/cvs.h,v retrieving revision 1.66 retrieving revision 1.67 diff -u -r1.66 -r1.67 --- src/usr.bin/cvs/cvs.h 2005/06/17 08:09:13 1.66 +++ src/usr.bin/cvs/cvs.h 2005/06/17 15:09:55 1.67 @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.66 2005/06/17 08:09:13 xsa Exp $ */ +/* $OpenBSD: cvs.h,v 1.67 2005/06/17 15:09:55 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. @@ -236,8 +236,8 @@ #define CVS_ENT_REG 0 #define CVS_ENT_ADDED 1 #define CVS_ENT_REMOVED 2 +#define CVS_ENT_UPTODATE 3 - #define CVS_ENTF_SYNC 0x01 /* contents of disk and memory match */ #define CVS_ENTF_WR 0x02 /* file is opened for writing too */ @@ -291,6 +291,7 @@ } CVSHIST; +extern char *cvs_req_modulename; extern char *cvs_repo_base; extern char *cvs_command; extern char *cvs_editor; @@ -392,6 +393,7 @@ int cvs_exec (int, char **, int []); int cvs_getargv (const char *, char **, int); int cvs_remove_dir (const char *); +int cvs_create_dir (const char *, int, char *, char *); char** cvs_makeargv (const char *, int *); void cvs_freeargv (char **, int); size_t cvs_path_cat (const char *, const char *, char *, size_t);