Skip to content

Commit a51a4b1

Browse files
authored
Rename main function to linux_main
1 parent a4eff3d commit a51a4b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/linux/linux_test.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ void emit (int fd, int type, int code, int val) {
1616
write(fd, &ie, sizeof(ie));
1717
}
1818

19-
int main (void) {
19+
int linux_main (void) {
2020
struct uinput_setup usetup;
2121

2222
int fd = open("/dev/uinput", O_WRONLY | O_NONBLOCK);
@@ -46,4 +46,4 @@ int main (void) {
4646
close(fd);
4747

4848
return 0;
49-
}
49+
}

0 commit comments

Comments
 (0)