From 02820036e67681a761f8a320aba56338e5f7faf2 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Tue, 18 Sep 2007 06:46:39 +0000 Subject: [PATCH] Solaris doesn't have stdint.h, but most of the stuff in it can be found int inttypes.h. git-svn-id: svn://svn.code.sf.net/p/rdesktop/code/trunk/rdesktop@1417 423420c4-83ab-492f-b58f-81f9feb106b5 --- scard.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scard.h b/scard.h index 723c7c4..452c691 100644 --- a/scard.h +++ b/scard.h @@ -34,7 +34,12 @@ * - jared.jennings@eglin.af.mil, 2 Aug 2006 */ +#ifdef HAVE_STDINT_H #include +#endif +#ifdef HAVE_INTTYPES_H +#include +#endif /* A DWORD when dealing with the smartcard stuff. Could be 32 bits or 64. */ typedef DWORD MYPCSC_DWORD;