diff options
Diffstat (limited to '')
-rw-r--r-- | libterminput_init.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libterminput_init.c b/libterminput_init.c new file mode 100644 index 0000000..0e65d40 --- /dev/null +++ b/libterminput_init.c @@ -0,0 +1,14 @@ +/* See LICENSE file for copyright and license details. */ +#include "common.h" + + +#if defined(__GNUC__) +__attribute__((__const__)) +#endif +int +libterminput_init(struct libterminput_state *ctx, int fd) +{ + (void) ctx; + (void) fd; + return -1; +} |