]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Added again some #define's for MSVC compilers that were wrongly removed.
authorrisso <risso>
Wed, 4 May 2005 19:20:52 +0000 (19:20 +0000)
committerrisso <risso>
Wed, 4 May 2005 19:20:52 +0000 (19:20 +0000)
tcpdump-stdinc.h

index 214c79cfcc7c8248b6ab8dc6a87e5db5f740f7d7..fe02e469205ce2a76fe8bd08d7bb12d27847946f 100644 (file)
@@ -29,7 +29,7 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  *
  *
- * @(#) $Header: /tcpdump/master/tcpdump/tcpdump-stdinc.h,v 1.14 2005-04-27 01:13:27 guy Exp $ (LBL)
+ * @(#) $Header: /tcpdump/master/tcpdump/tcpdump-stdinc.h,v 1.15 2005-05-04 19:20:52 risso Exp $ (LBL)
  */
 
 /*
 #include <sys/types.h>
 #include <net/netdb.h>  /* in wpcap's Win32/include */
 
+#if !defined(__MINGW32__) && !defined(__WATCOMC__)
+#undef toascii
+#define isascii __isascii
+#define toascii __toascii
+#define stat _stat
+#define open _open
+#define fstat _fstat
+#define read _read
+#define close _close
+#define O_RDONLY _O_RDONLY
+
+typedef short ino_t;
+#endif /* __MINGW32__ */
+
 #ifdef __MINGW32__
 #include <stdint.h>
 #endif