diff options
Diffstat (limited to 'com32/libutil/include/getkey.h')
-rw-r--r-- | com32/libutil/include/getkey.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/com32/libutil/include/getkey.h b/com32/libutil/include/getkey.h index 99171e1c..37efc668 100644 --- a/com32/libutil/include/getkey.h +++ b/com32/libutil/include/getkey.h @@ -36,6 +36,9 @@ #define LIBUTIL_GETKEY_H #include <stdio.h> +#include <sys/times.h> + +#define KEY_NONE (-1) #define KEY_CTRL(x) ((x) & 0x001f) #define KEY_BACKSPACE 0x0008 @@ -67,6 +70,6 @@ #define KEY_INS 0x0128 #define KEY_DEL 0x0129 -int get_key(FILE *); +int get_key(FILE *, clock_t); #endif /* LIBUTIL_GETKEY_H */ |