File: stdbool.h

package info (click to toggle)
gsasl 2.2.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,604 kB
  • sloc: ansic: 16,551; sh: 1,739; makefile: 677; xml: 301; php: 172; perl: 4
file content (12 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _STDBOOL_H
# define _STDBOOL_H

# define _Bool signed char
enum
{ false = 0, true = 1 };
# define bool _Bool
# define false 0
# define true 1
# define __bool_true_false_are_defined 1

#endif /* _STDBOOL_H */