mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-03 06:53:31 +08:00
55fb58f426
Include stdbool.h.
17 lines
165 B
C
17 lines
165 B
C
#ifndef STDOPEN_H
|
|
# define STDOPEN_H 1
|
|
|
|
# include <stdbool.h>
|
|
|
|
# ifdef __cplusplus
|
|
extern "C" {
|
|
# endif
|
|
|
|
bool stdopen (void);
|
|
|
|
# ifdef __cplusplus
|
|
}
|
|
# endif
|
|
|
|
#endif
|