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
This commit is contained in:
Pierre Ossman 2007-09-18 06:46:39 +00:00
parent 5d1527d1b6
commit 02820036e6

View File

@ -34,7 +34,12 @@
* - jared.jennings@eglin.af.mil, 2 Aug 2006
*/
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif
/* A DWORD when dealing with the smartcard stuff. Could be 32 bits or 64. */
typedef DWORD MYPCSC_DWORD;