summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2011-01-13 08:48:00 -0500
committerEric S. Raymond <esr@thyrsus.com>2011-01-13 08:48:00 -0500
commita4a56c1e865b1ee03670ea08153143b798fcf7c3 (patch)
tree5f3177ccf2f70cfa8d23f279d94ee9f200a7cc6e
parent8ecf47e689d6b828fccd3bee3995b1b616bfa644 (diff)
downloaddeheader-a4a56c1e865b1ee03670ea08153143b798fcf7c3.tar.gz
deheader-a4a56c1e865b1ee03670ea08153143b798fcf7c3.tar.bz2
deheader-a4a56c1e865b1ee03670ea08153143b798fcf7c3.tar.xz
deheader-a4a56c1e865b1ee03670ea08153143b798fcf7c3.zip
Check dependencies on booleans.
-rwxr-xr-xdeheader3
1 files changed, 3 insertions, 0 deletions
diff --git a/deheader b/deheader
index 7d2f6a1..c1d3cc5 100755
--- a/deheader
+++ b/deheader
@@ -1169,6 +1169,9 @@ requirements = (
(r"setservent()", ["<netdb.h>"]),
# unistd.h - standard symbolic constants and types
(r"gethostname()", ["<unistd.h>"]),
+ # stdbool.h - standard boolean type
+ (r"=\s*true", ["<stdbool.h>"]),
+ (r"=\s*false", ["<stdbool.h>"]),
# Dependencies observed on systems other than the Linux this was
# developed under.