mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-19 10:10:06 +02:00
28 lines
552 B
Plaintext
28 lines
552 B
Plaintext
From aa1d8d68e3b5539717e3f804cf877407051ad2e8 Mon Sep 17 00:00:00 2001
|
|
From: Adrien Destugues <pulkomandy@gmail.com>
|
|
Date: Sun, 9 Aug 2015 10:31:43 +0200
|
|
Subject: Remove useless include.
|
|
|
|
|
|
diff --git a/src/2cdt.c b/src/2cdt.c
|
|
index c3fb520..35e5a1c 100644
|
|
--- a/src/2cdt.c
|
|
+++ b/src/2cdt.c
|
|
@@ -23,11 +23,13 @@ on the PC */
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
+#ifndef __HAIKU__
|
|
#ifdef UNIX
|
|
#include <sys/io.h>
|
|
#else
|
|
#include <io.h>
|
|
#endif
|
|
+#endif
|
|
#include "defs.h"
|
|
#include "tzxfile.h"
|
|
#include "getopt.h"
|
|
--
|
|
2.2.2
|
|
|