toaruos/apps/ifconfig.c
2021-05-31 10:54:11 +09:00

12 lines
277 B
C

/**
* @file apps/ifconfig.c
* @brief Network interface configuration tool.
*
* Manipulates and enumerates network interfaces.
*/
#include <stdio.h>
int main(int argc, char * argv[]) {
/* I have no idea how this works on Linux or BSD, but based on some manpages... */
}