aboutsummaryrefslogtreecommitdiff
path: root/sf-pcap.c
diff options
context:
space:
mode:
authorMichael Richardson <mcr@sandelman.ca>2023-07-26 17:01:58 -0400
committerMichael Richardson <mcr@sandelman.ca>2023-07-26 17:04:08 -0400
commit4aa89c4070e50462b258378cefc2a0d0f5d30998 (patch)
treeae3931e79a7fcb06f5d868bacae351591b038d87 /sf-pcap.c
parentf4f6feec8497ab25ac2f4f62da32d18d2ed464fb (diff)
remove additional ifdefs based upon MSDOS
Diffstat (limited to 'sf-pcap.c')
-rw-r--r--sf-pcap.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/sf-pcap.c b/sf-pcap.c
index 54b5c851..2c310773 100644
--- a/sf-pcap.c
+++ b/sf-pcap.c
@@ -61,12 +61,6 @@
*/
#if defined(_WIN32)
#define SET_BINMODE(f) _setmode(_fileno(f), _O_BINARY)
-#elif defined(MSDOS)
- #if defined(__HIGHC__)
- #define SET_BINMODE(f) setmode(f, O_BINARY)
- #else
- #define SET_BINMODE(f) setmode(fileno(f), O_BINARY)
- #endif
#endif
/*