mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/legion/kbd.git
synced 2026-01-26 22:22:17 +00:00
The use of its progname is justified by klibc support. Support for klibc has been removed for a very long time. We support and test only glibc and musl which have support of program_invocation_short_name. Since vlock already uses _GNU_SOURCE, it seems reasonable to stop using its progname and use program_invocation_short_name everywhere. Signed-off-by: Alexey Gladkov <legion@kernel.org>
30 lines
603 B
C
30 lines
603 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
|
|
#include <keymap.h>
|
|
#include "libcommon.h"
|
|
|
|
int
|
|
main(int argc KBD_ATTR_UNUSED, char **argv KBD_ATTR_UNUSED)
|
|
{
|
|
struct lk_ctx *ctx;
|
|
|
|
ctx = lk_init();
|
|
lk_set_log_fn(ctx, NULL, NULL);
|
|
|
|
if (lk_add_key(ctx, 0, 0, 0) != 0)
|
|
kbd_error(EXIT_FAILURE, 0, "Unable to add keycode = 0");
|
|
|
|
if (lk_add_key(ctx, 0, 0, 16) != 0)
|
|
kbd_error(EXIT_FAILURE, 0, "Unable to add keycode = 16");
|
|
|
|
if (lk_add_key(ctx, 1, 1, K_HOLE) != 0)
|
|
kbd_error(EXIT_FAILURE, 0, "Unable to add keycode = K_HOLE");
|
|
|
|
lk_free(ctx);
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|