aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/rtp_stream.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2004-06-29 20:51:26 +0000
committerUlf Lamping <ulf.lamping@web.de>2004-06-29 20:51:26 +0000
commita24b176c32f78abc72f75819bb463aa60bd6729a (patch)
tree9b79f904d1c0d7c0b3db3e0274db9fd72ff440c0 /gtk/rtp_stream.c
parenta08161a110dcdfd6e19027b2e4db6c3fc3c26910 (diff)
define of O_BINARY not needed, if fcntl.h is included
other #include related cleanups svn path=/trunk/; revision=11272
Diffstat (limited to 'gtk/rtp_stream.c')
-rw-r--r--gtk/rtp_stream.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/rtp_stream.c b/gtk/rtp_stream.c
index d02ea5a481..647a01934a 100644
--- a/gtk/rtp_stream.c
+++ b/gtk/rtp_stream.c
@@ -1,7 +1,7 @@
/* rtp_stream.c
* RTP streams summary addition for ethereal
*
- * $Id: rtp_stream.c,v 1.14 2004/02/12 22:24:28 guy Exp $
+ * $Id: rtp_stream.c,v 1.15 2004/06/29 20:46:29 ulfl Exp $
*
* Copyright 2003, Alcatel Business Systems
* By Lars Ruoff <lars.ruoff@gmx.net>
@@ -41,16 +41,16 @@
#include "alert_box.h"
#include "simple_dialog.h"
+#ifdef HAVE_FCNTL_H
+#include <fcntl.h>
+#endif
+
#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif
#include <string.h>
-#ifndef O_BINARY
-#define O_BINARY 0
-#endif
-
/****************************************************************************/
/* the one and only global rtpstream_tapinfo_t structure */