From 93e4c4341ca23e8de8dccb8b1b0c4bb7b0920805 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Mon, 31 Dec 2007 03:55:22 +0000 Subject: Remove dead code git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@524 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- converter/other/cameratopam/cameratopam.c | 21 ++------------------- 1 file changed, 2 insertions(+), 19 deletions(-) (limited to 'converter') diff --git a/converter/other/cameratopam/cameratopam.c b/converter/other/cameratopam/cameratopam.c index 92773c91..f2c6d78c 100644 --- a/converter/other/cameratopam/cameratopam.c +++ b/converter/other/cameratopam/cameratopam.c @@ -24,15 +24,9 @@ #include #ifdef __CYGWIN__ -#include + #include #endif -#ifdef WIN32 - #include - #pragma comment(lib, "ws2_32.lib") - #define strcasecmp stricmp - typedef __int64 INT64; - static bool const have64BitArithmetic = true; -#else +#if !defined(WIN32) || defined(__CYGWIN__) #include #endif @@ -48,17 +42,6 @@ #include "foveon.h" #include "dng.h" -#if HAVE_INT64 - typedef int64_t INT64; - static bool const have64BitArithmetic = true; -#else - /* We define INT64 to something that lets the code compile, but we - should not execute any INT64 code, because it will get the wrong - result. */ - typedef int INT64; - static bool const have64BitArithmetic = false; -#endif - /* All global variables are defined here, and all functions that access them are prefixed with "CLASS". Note that a thread-safe -- cgit 1.4.1