ngspice/src/include/bool.h

9 lines
100 B
C

#ifndef _BOOL_H
#define _BOOL_H
typedef unsigned char bool;
#define TRUE 1
#define FALSE 0
#endif