[kbd] [PATCH] libkeymap: Include sys/types.h in array.h for ssize_t
Michael Forney <[email protected]> Wed, 26 Jun 2019 19:41:35 -0700
| Newsgroups | dev.linux.lists.kbd |
|---|---|
| Message-ID | <[email protected]> |
This fixes the build with musl libc. Signed-off-by: Michael Forney <[email protected]> --- src/libkeymap/keymap/array.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libkeymap/keymap/array.h b/src/libkeymap/keymap/array.h index 43a5198..3ff0af0 100644 --- a/src/libkeymap/keymap/array.h +++ b/src/libkeymap/keymap/array.h @@ -2,6 +2,7 @@ #define LK_ARRAY_H #include <sys/param.h> +#include <sys/types.h> /** * @brief Basic structure for array implementation. -- 2.20.1