mirror of
https://github.com/libretro/Mu.git
synced 2026-02-14 13:45:21 +00:00
10 lines
215 B
C
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
|
|
|