Newer
Older
UbixOS / Dump / hybos / include / stdbool.h
@cwolsen cwolsen on 31 Oct 2018 122 bytes Big Dump
#ifndef _STDBOOL_H
#define _STDBOOL_H

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

#endif /* !defined(_STDBOOL_H) */