Files
2018-11-06 19:13:32 -08:00

10 lines
215 B
C

#ifndef __RARCH_STDBOOL_H
#define __RARCH_STDBOOL_H
/*forward stdbool.h to boolean.h on msvc20** */
/*this requires manual bool casting using !!( var ) and is not -std=c99 compliant*/
#include <boolean.h>
#endif