summaryrefslogtreecommitdiff
path: root/stun
diff options
context:
space:
mode:
authorFilippo Della Betta <filippo.dellabetta@telecomitalia.it>2012-02-15 11:04:39 +0100
committerYouness Alaoui <youness.alaoui@collabora.co.uk>2012-02-15 15:51:30 -0500
commit5ff6366db6b9c6e5b5848e4b7f4baa797e3c9628 (patch)
tree772e926a0fa39b8056d026dc65c47519c058a07c /stun
parentecc2dcc99cdc854224176e18406057d0a13adb31 (diff)
downloadlibnice-5ff6366db6b9c6e5b5848e4b7f4baa797e3c9628.tar.gz
Included the replacement header win32_common.h instead of the missing header stdint.h on WIN32 platform
Diffstat (limited to 'stun')
-rw-r--r--stun/sha1.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/stun/sha1.h b/stun/sha1.h
index 1383a6f..27ea014 100644
--- a/stun/sha1.h
+++ b/stun/sha1.h
@@ -15,7 +15,11 @@
#ifndef SHA1_H
#define SHA1_H
+#ifdef _WIN32
+#include "win32_common.h"
+#else
#include <stdint.h>
+#endif
#include <stddef.h>
#define SHA1_MAC_LEN 20