diff options
author | Jim Meyering <jim@meyering.net> | 2004-07-07 15:07:08 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-07-07 15:07:08 +0000 |
commit | ff5ea922714b555de3554691d90f526ef8ad849a (patch) | |
tree | 8cb6a5df1b201e2c71a025192a64f0bbc5a3e2ed | |
parent | de9faabfe6146ce654354851b147ec8cd58bfbc6 (diff) | |
download | coreutils-ff5ea922714b555de3554691d90f526ef8ad849a.tar.xz |
Include stdbool.h.
Forward-declare `struct stat'.
-rw-r--r-- | lib/cycle-check.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/cycle-check.h b/lib/cycle-check.h index 5f2ad1dc1..76cf104ab 100644 --- a/lib/cycle-check.h +++ b/lib/cycle-check.h @@ -14,8 +14,11 @@ so that the proper identifiers are all declared. */ +# include <stdbool.h> # include "dev-ino.h" +struct stat; + struct cycle_check_state { struct dev_ino dev_ino; |