Subversion Repositories Tewi

Rev

Blame | Last modification | View Log | Download | RSS feed

/* $Id: stdbool.h 212 2024-10-02 17:44:55Z nishi $ */

#ifndef __STDBOOL_H__
#define __STDBOOL_H__

typedef unsigned char bool;

#define true 1
#define false 0

#endif