Author: adrian.chadd
Date: Tue Apr 21 02:58:08 2009
New Revision: 13967
Modified:
branches/LUSCA_HEAD/tools/cossdump.c
Log:
Remove unused code.
Modified: branches/LUSCA_HEAD/tools/cossdump.c
==============================================================================
--- branches/LUSCA_HEAD/tools/cossdump.c (original)
+++ branches/LUSCA_HEAD/tools/cossdump.c Tue Apr 21 02:58:08 2009
@@ -31,35 +31,9 @@
#include "../libsqstore/store_mgr.h"
-#include "../src/defines.h"
-/* XXX Needed for stuff in enums.h; remove later! -adrian */
-#include "../libhttp/HttpHeaderType.h"
-#include "../src/enums.h"
-
-#ifndef PRId64
-#ifdef _SQUID_MSWIN_ /* Windows native port using MSVCRT */
-#define PRId64 "I64d"
-#elif SIZEOF_INT64_T > SIZEOF_LONG
-#define PRId64 "lld"
-#else
-#define PRId64 "ld"
-#endif
-#endif
-
-#if SIZEOF_INT64_T > SIZEOF_LONG && HAVE_STRTOLL
-#define SIZEOF_SQUID_OFF_T SIZEOF_INT64_T
-#define PRINTF_OFF_T PRId64
-#define strto_off_t (int64_t)strtoll
-#else
-#define SIZEOF_SQUID_OFF_T SIZEOF_LONG
-#define PRINTF_OFF_T "ld"
-#define strto_off_t strtol
-#endif
-
#define STRIPESIZE 1048576
#define BLOCKSIZE 1024
#define BLKBITS 10
-
/* normally in libiapp .. */
int shutting_down = 0;
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"lusca-commit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/lusca-commit?hl=en
-~----------~----~----~----~------~----~------~--~---