kbd/tests/libkeymap/libkeymap-test04.c
Alexey Gladkov 5a7bc7d17e
Drop custom progname
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>
2024-10-19 00:12:27 +02:00

27 lines
533 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();
if (ctx == NULL)
kbd_error(EXIT_FAILURE, 0, "Unable to initialize structure by valid pointer");
if (lk_free(ctx) != 0)
kbd_error(EXIT_FAILURE, 0, "Unable to free by valid pointer");
if (lk_free(NULL) == 0)
kbd_error(EXIT_FAILURE, 0, "Possible to free NULL pointer");
return EXIT_SUCCESS;
}