File: stdbool.h

package info (click to toggle)
gsasl 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 16,752 kB
  • sloc: ansic: 55,874; sh: 7,846; makefile: 640; xml: 301; perl: 242; php: 172; sed: 16
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 */