File: stdbool.h

package info (click to toggle)
libopenobex 1.7.2-2.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 984 kB
  • sloc: ansic: 9,988; xml: 407; makefile: 29
file content (12 lines) | stat: -rw-r--r-- 188 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _STDBOOL_H
#define _STDBOOL_H

#if ! defined(__cplusplus)
typedef int bool;
#define false 0
#define true 1
#endif

#define __bool_true_false_are_defined 1

#endif /* _STDBOOL_H */