Revision 6aa636e93ce10f3b5c4d35e5d5057391dee130e2 authored by danne on 09 January 2017, 22:56:39 UTC, committed by danne on 09 January 2017, 22:56:39 UTC
1 parent c0c7a1a
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