This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/dm/include/stdbool.h

17 lines
253 B
C

/* Copyright (C) 2001 by Digital Mars */
/* www.digitalmars.com */
#if __DMC__ || __RCC__
#pragma once
#endif
#ifndef __STDBOOL_H
#define __STDBOOL_H 1
#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_defined 1
#endif