cygwin: imb: Fix build error (wchar_t)

For Win32/Cygwin, the imb plugin was failing to build with
the following message:

imbapi.h:140:9: error: unknown type name 'wchar_t'
 typedef wchar_t      WCHAR;

Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
This commit is contained in:
Jörg Krause 2016-04-18 19:30:00 +03:00 committed by Alexander Amelkin
parent 9ec2232321
commit 34fc86bd75
No known key found for this signature in database
GPG Key ID: E893587B5B74178D

View File

@ -35,6 +35,9 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*----------------------------------------------------------------------*/
#ifndef _WINDEFS_H
#define _WINDEFS_H
#include <stddef.h>
#ifndef FALSE
#define FALSE 0
#endif