network: make it build.

sleept ime
This commit is contained in:
Alastair Poole 2021-03-01 22:01:23 +00:00
parent 104e4081bd
commit 279b0920ba
1 changed files with 4 additions and 0 deletions

View File

@ -143,6 +143,10 @@ net_iface_t **
system_network_ifaces_get(int *n)
{
*n = 0;
#if defined(__linux__)
return _linux_generic_network_status(n);
#else
return NULL;
#endif
}