cvs-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Cvs-cvs] Changes to ccvs/src/edit.h


From: Derek Robert Price
Subject: [Cvs-cvs] Changes to ccvs/src/edit.h
Date: Wed, 09 Nov 2005 17:13:40 -0500

Index: ccvs/src/edit.h
diff -u ccvs/src/edit.h:1.10 ccvs/src/edit.h:1.11
--- ccvs/src/edit.h:1.10        Wed Oct  6 15:12:37 2004
+++ ccvs/src/edit.h     Wed Nov  9 22:13:37 2005
@@ -10,14 +10,14 @@
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.  */
 
-extern int watch_on (int argc, char **argv);
-extern int watch_off (int argc, char **argv);
+int watch_on (int argc, char **argv);
+int watch_off (int argc, char **argv);
 
 #ifdef CLIENT_SUPPORT
 /* Check to see if any notifications are sitting around in need of being
    sent.  These are the notifications stored in CVSADM_NOTIFY (edit,unedit);
    commit calls notify_do directly.  */
-extern void notify_check (const char *repository, const char *update_dir);
+void notify_check (const char *repository, const char *update_dir);
 #endif /* CLIENT_SUPPORT */
 
 /* Issue a notification for file FILENAME.  TYPE is 'E' for edit, 'U'
@@ -25,19 +25,18 @@
    For TYPE 'E', VAL is the time+host+directory data which goes in
    _editors, and WATCHES is zero or more of E,U,C, in that order, to specify
    what kinds of temporary watches to set.  */
-extern void notify_do (int type, const char *filename, const char *upadte_dir,
-                      const char *who, const char *val, const char *watches,
-                       const char *repository);
+void notify_do (int type, const char *filename, const char *upadte_dir,
+               const char *who, const char *val, const char *watches,
+               const char *repository);
 
 /* Set attributes to reflect the fact that EDITOR is editing FILENAME.
    VAL is time+host+directory, or NULL if we are to say that EDITOR is
    *not* editing FILENAME.  */
-extern void editor_set (const char *filename, const char *editor,
-                        const char *val);
+void editor_set (const char *filename, const char *editor, const char *val);
 
 /* Take note of the fact that FILE is up to date (this munges CVS/Base;
    processing of CVS/Entries is done separately).  */
-extern void mark_up_to_date (const char *file);
+void mark_up_to_date (const char *file);
 
 void editors_output (const char *fullname, const char *them);
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]