diff options
author | Jim Meyering <jim@meyering.net> | 2005-08-24 13:01:31 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-08-24 13:01:31 +0000 |
commit | 55fb58f426465e2348150cf373fa6a5a592e8d8e (patch) | |
tree | 258e7916bcb7a8938061056161e10d52fc234399 /lib | |
parent | 2f8742484d05e9e8e0e92b6c0a26ceb94fdb8dad (diff) | |
download | coreutils-55fb58f426465e2348150cf373fa6a5a592e8d8e.tar.xz |
adjust prototype
Include stdbool.h.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/stdopen.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/stdopen.h b/lib/stdopen.h index d6c9415b4..d54e5f135 100644 --- a/lib/stdopen.h +++ b/lib/stdopen.h @@ -1,11 +1,13 @@ #ifndef STDOPEN_H # define STDOPEN_H 1 +# include <stdbool.h> + # ifdef __cplusplus extern "C" { # endif -void stdopen (void); +bool stdopen (void); # ifdef __cplusplus } |