diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-01-19 08:21:46 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-01-19 08:21:46 +0000 |
commit | e6beaf1be289324cbddfbc7213564b403fbfd65b (patch) | |
tree | b70c8e000f8032c3058db84b3141490722af6bb6 /usr.bin | |
parent | 55edccc1371787918ac2a539d9e75bfa401d7e12 (diff) |
move cvs_import() proto to the correct place.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/cvs.h | 3 | ||||
-rw-r--r-- | usr.bin/cvs/import.c | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index a8928adf99d..6eddbd2782f 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.131 2007/01/18 08:49:08 xsa Exp $ */ +/* $OpenBSD: cvs.h,v 1.132 2007/01/19 08:21:44 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -380,6 +380,7 @@ int cvs_edit(int, char **); int cvs_editors(int, char **); int cvs_export(int, char **); int cvs_getlog(int, char **); +int cvs_import(int, char **); int cvs_init(int, char **); int cvs_remove(int, char **); int cvs_status(int, char **); diff --git a/usr.bin/cvs/import.c b/usr.bin/cvs/import.c index 8586363a060..8b254462255 100644 --- a/usr.bin/cvs/import.c +++ b/usr.bin/cvs/import.c @@ -1,4 +1,4 @@ -/* $OpenBSD: import.c,v 1.64 2007/01/18 16:45:52 joris Exp $ */ +/* $OpenBSD: import.c,v 1.65 2007/01/19 08:21:45 xsa Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -22,7 +22,6 @@ #include "log.h" #include "remote.h" -int cvs_import(int, char **); void cvs_import_local(struct cvs_file *); static void import_new(struct cvs_file *); |