]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
these functions can be static
authorwessels <>
Wed, 16 Dec 1998 13:34:31 +0000 (13:34 +0000)
committerwessels <>
Wed, 16 Dec 1998 13:34:31 +0000 (13:34 +0000)
src/store_swapout.cc

index 542c666b70343cf090f0a01d0b07fd064811a7a3..667cd436b803893749ae34ec23e76122ed541e63 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: store_swapout.cc,v 1.38 1998/12/05 00:54:45 wessels Exp $
+ * $Id: store_swapout.cc,v 1.39 1998/12/16 06:34:31 wessels Exp $
  *
  * DEBUG: section 20    Storage Manager Swapout Functions
  * AUTHOR: Duane Wessels
@@ -43,9 +43,11 @@ typedef struct swapout_ctrl_t {
 
 static FOCB storeSwapOutFileOpened;
 static off_t storeSwapOutObjectBytesOnDisk(const MemObject *);
+static void storeSwapOutStart(StoreEntry * e);
+static DWCB storeSwapOutHandle;
 
 /* start swapping object to disk */
-void
+static void
 storeSwapOutStart(StoreEntry * e)
 {
     swapout_ctrl_t *ctrlp = xmalloc(sizeof(swapout_ctrl_t));
@@ -65,7 +67,7 @@ storeSwapOutStart(StoreEntry * e)
        e);
 }
 
-void
+static void
 storeSwapOutHandle(int fdnotused, int flag, size_t len, void *data)
 {
     swapout_ctrl_t *ctrlp = data;