Just cosmetics... ;)

This commit is contained in:
Johannes Findeisen 2025-01-13 06:50:11 +01:00
commit 00aa8cd38b

View file

@ -1,6 +1,6 @@
/** /**
* xtimer is a program that executes a givin program after a given time if no * Xtimer is a program that executes a givin command or program after a given
* X11 keybord or mouse input happend in the given time. * time if no X11 keybord or mouse input happend in the given time.
* *
* Author: Johannes Findeisen <you@hanez.org> - 2025 * Author: Johannes Findeisen <you@hanez.org> - 2025
* License: Apache-2.0 (see LICENSE) * License: Apache-2.0 (see LICENSE)
@ -8,11 +8,11 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <time.h>
#include <limits.h> // For INT_MAX and INT_MIN
#include <unistd.h> #include <unistd.h>
#include <X11/Xlib.h> #include <X11/Xlib.h>
#include <X11/extensions/XInput2.h> #include <X11/extensions/XInput2.h>
#include <time.h>
#include <limits.h> // For INT_MAX and INT_MIN
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {