On some UNIX platforms, you need to include <sys/types.h> to get

"u_char" defined.

svn path=/trunk/; revision=2413
This commit is contained in:
Guy Harris 2000-09-11 23:31:05 +00:00
parent bf8e6e763f
commit 172638d477
1 changed files with 6 additions and 1 deletions

View File

@ -1,7 +1,7 @@
/* util.h
* Utility definitions
*
* $Id: strutil.h,v 1.2 2000/09/11 20:05:13 gram Exp $
* $Id: strutil.h,v 1.3 2000/09/11 23:31:05 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -27,6 +27,11 @@
#define __STRUTIL_H__
/* ... thus, config.h needs to be #included */
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h> /* for u_char */
#endif
#ifdef HAVE_WINSOCK_H
# include <winsock.h> /* for u_char */
#endif