I see this code in the Linux kernel but I am not able to understand why (void) f; is being called here. Any idea?
/* start 'ping' in the background to have some kfree_skb events */
f = popen("ping -c5 localhost", "r");
(void) f;
Thanks