mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 20:50:06 +01:00
Main has unused parameters argc and argv. Since they are unused and C 99 allows to prototype main as 'int main(void)', remove them and replace by void. It fixes build when unused parameters are treated as errors. Signed-off-by: Marek Chalupa <mchqwerty@gmail.com> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
8 lines
86 B
C
8 lines
86 B
C
#include <libinput.h>
|
|
|
|
/* This is a build-test only */
|
|
|
|
int
|
|
main(void) {
|
|
return 0;
|
|
}
|