mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
7 lines
161 B
C
7 lines
161 B
C
|
#include <stdlib.h>
|
||
|
#include <xkbcommon/xkbcommon.h>
|
||
|
int main() {
|
||
|
return (xkb_context_new(XKB_CONTEXT_NO_FLAGS) == NULL)
|
||
|
? EXIT_FAILURE
|
||
|
: EXIT_SUCCESS;
|
||
|
}
|