NetBSD/gnu/lib/libg++/g++-include/bool.h

11 lines
115 B
C

#ifndef _bool_h
#ifdef __GNUG__
#pragma once
#endif
#define _bool_h 1
enum bool { FALSE = 0, TRUE = 1 };
#endif