]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
make storeCopy() static
authorwessels <>
Sat, 14 Sep 1996 13:22:04 +0000 (13:22 +0000)
committerwessels <>
Sat, 14 Sep 1996 13:22:04 +0000 (13:22 +0000)
src/store.cc

index eb6a4b766e4968540143f55b7f901c2b202e7054..7cb4f35818e7c9b4d01acc66f9fbd948c1303425 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: store.cc,v 1.107 1996/09/13 23:16:44 wessels Exp $
+ * $Id: store.cc,v 1.108 1996/09/14 07:22:04 wessels Exp $
  *
  * DEBUG: section 20    Storeage Manager
  * AUTHOR: Harvest Derived
@@ -219,6 +219,7 @@ static int compareSize _PARAMS((StoreEntry ** e1, StoreEntry ** e2));
 static int storeClientListSearch _PARAMS((MemObject *, int fd));
 static void storeHashMemInsert _PARAMS((StoreEntry *));
 static void storeHashMemDelete _PARAMS((StoreEntry *));
+static int storeCopy _PARAMS((StoreEntry *, int, int, char *, int *));
 
 /* Now, this table is inaccessible to outsider. They have to use a method
  * to access a value in internal storage data structure. */
@@ -2231,7 +2232,7 @@ int storeEntryLocked(e)
 }
 
 /*  use this for internal call only */
-int storeCopy(e, stateoffset, maxSize, buf, size)
+static int storeCopy(e, stateoffset, maxSize, buf, size)
      StoreEntry *e;
      int stateoffset;
      int maxSize;