From 3da6407d41f0a7eb2708c48aea04bd8b37f37d37 Mon Sep 17 00:00:00 2001 From: meep-eep Date: Sun, 27 Feb 2005 13:41:48 +0000 Subject: [PATCH] Compilation fixes for platforms without wint_t or wchar_t. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@1569 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/port.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sc2/src/port.h b/sc2/src/port.h index b0aa51963..f0a9ad3da 100644 --- a/sc2/src/port.h +++ b/sc2/src/port.h @@ -117,11 +117,11 @@ int setenv (const char *name, const char *value, int overwrite); #endif #ifndef HAVE_WCHAR_T -typedef unsigned short wchar_t +typedef unsigned short wchar_t; #endif #ifndef HAVE_WINT_T -typedef unsigned int wint_t +typedef unsigned int wint_t; #endif #ifdef HAVE_ISWGRAPH