blob: 7c0464519a4282b772144941813ef7f1cb5b6bc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef __wasilibc___function___isatty_h
#define __wasilibc___function___isatty_h
#ifdef __cplusplus
extern "C" {
#endif
int __isatty(int fd);
#ifdef __cplusplus
}
#endif
#endif
|