Revision 7fe8185e43e5a55c9ddb182ac658cfa3979db6d5 authored by daniel_fort on 24 March 2019, 01:10:01 UTC, committed by daniel_fort on 24 March 2019, 01:10:01 UTC
1 parent 66eb10a
Raw File
stdbool.h
#ifndef _STDBOOL_H
#define _STDBOOL_H

/* ISOC99 boolean */

#define bool	_Bool
#define true	1
#define false	0

#endif /* _STDBOOL_H */
back to top