In POSIX-UEFI's hello world
https://gitlab.com/bztsrc/posix-uefi/-/ ... lloworld.c
there are two lines:
Code: Select all
(void)argc;
(void)argv;
Greetings
Peter
Code: Select all
(void)argc;
(void)argv;
Those simply make the compiler not give a warning about unused parameters. It would run fine even without them.PeterX wrote:there are two lines:I don't understand what that is. Are these type conversions? Are these function pointers?Code: Select all
(void)argc; (void)argv;