chiark / gitweb /
serialmgr: Copy from woking.cam.xci-test.com
[sympathy.git] / src / lockfile.h
index 6941a1e3ed76f53d9874bd1bc1d5f3e8dbdc8622..e7dee42a9ff80b892e9bfc4d521086f0a3469239 100644 (file)
@@ -1,17 +1,29 @@
-/*
+/* 
  * lockfile.h:
  *
- * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
+ * Copyright (c) 2008 James McKenzie <sympathy@madingley.org>,
  * All rights reserved.
  *
  */
 
-/*
- * $Id$
+/* 
+ * $Id: lockfile.h,v 1.11 2008/03/10 11:49:33 james Exp $
  */
 
-/*
- * $Log$
+/* 
+ * $Log: lockfile.h,v $
+ * Revision 1.11  2008/03/10 11:49:33  james
+ * *** empty log message ***
+ *
+ * Revision 1.10  2008/03/07 12:37:04  james
+ * *** empty log message ***
+ *
+ * Revision 1.9  2008/03/03 06:04:42  james
+ * *** empty log message ***
+ *
+ * Revision 1.8  2008/03/02 10:37:56  james
+ * *** empty log message ***
+ *
  * Revision 1.7  2008/02/23 11:48:37  james
  * *** empty log message ***
  *
 
 #define FILE_LIST_MAX_LEN 1024
 
-typedef struct Filelist_ent
-{
+typedef struct Filelist_ent {
   char name[FILE_LIST_MAX_LEN];
   struct Filelist_ent *next;
 } Filelist_ent;
 
-typedef struct
-{
+typedef struct {
   Filelist_ent *head;
 } Filelist;
 
 
-typedef struct
-{
+typedef struct {
   int mode;
   int i;
   struct timeval last_stale_purge;