mirror of
https://github.com/ipmitool/ipmitool.git
synced 2025-07-02 02:33:37 +00:00
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:
committed by
Alexander Amelkin
parent
9ec2232321
commit
34fc86bd75
@ -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
|
||||
|
Reference in New Issue
Block a user