Browse code

update

git-svn: trunk@1317

Tomasz Kojm authored on 2005/02/07 04:01:11
Showing 1 changed files
... ...
@@ -1,5 +1,5 @@
1 1
 /*
2
- *  Copyright (C) 2004 Tomasz Kojm <tkojm@clamav.net>
2
+ *  Copyright (C) 2004 - 2005 Tomasz Kojm <tkojm@clamav.net>
3 3
  *
4 4
  *  Based on zzip-stdint.h
5 5
  *
... ...
@@ -63,17 +63,4 @@
63 63
 
64 64
 #endif
65 65
 
66
-/*
67
-** Interix Support: Brian A. Reiter <breiter@wolfereiter.com>
68
-** In Interix, <sys/typedef.h> defines int64_t but not uint64_t.
69
-** Interix defines u_int64_t instead.
70
-*/
71
-#if __INTERIX
72
-#ifdef __GNUC__
73
-    typedef unsigned long long 	uint64_t;  
74
-#elif MSC_VER
75
-    typedef unsigned __int64 	uint64_t;
76
-#endif/*__GNUC__*/
77
-#endif /*Interix*/
78
-
79 66
 #endif