Newer
Older
ubixos / Dump / hybos / include / stdbool.h
@Christopher W. Olsen Christopher W. Olsen on 5 Nov 2018 116 bytes Sync
#ifndef _STDBOOL_H
#define _STDBOOL_H

typedef enum {false = 0, true = !0} bool;

#endif /* !defined(_STDBOOL_H) */