aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.h
diff options
context:
space:
mode:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-27 15:08:22 +0000
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>2005-07-27 15:08:22 +0000
commit0ad666c9d37b181dcbac79d6786b27335b5d9301 (patch)
treec25abe1e187be56f32f4325cbe2ca488d3cee704 /epan/proto.h
parent78fc74a15c618e8a0c9f9c40cd675783377fa194 (diff)
gcc-4.0 (GCC) 4.0.2 20050720 (prerelease) (SUSE Linux)
fails when trying to use varargs. Due to a missing include config.h we were using varargs with proto.h git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15117 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/proto.h')
-rw-r--r--epan/proto.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/proto.h b/epan/proto.h
index 859c484f74..b90dbbfbf7 100644
--- a/epan/proto.h
+++ b/epan/proto.h
@@ -37,6 +37,8 @@
#ifndef __PROTO_H__
#define __PROTO_H__
+#include "config.h"
+
#ifdef HAVE_STDARG_H
# include <stdarg.h>
#else