(orbis) 'else ifdef' not necessary

This commit is contained in:
twinaphex 2019-02-06 19:03:07 +01:00
parent 8bc4a66d49
commit 5d1c45e8f9
2 changed files with 2 additions and 12 deletions

View File

@ -32,7 +32,9 @@
extern nbio_intf_t nbio_linux;
extern nbio_intf_t nbio_mmap_unix;
extern nbio_intf_t nbio_mmap_win32;
#if defined(ORBIS)
extern nbio_intf_t nbio_orbis;
#endif
extern nbio_intf_t nbio_stdio;
#if defined(_linux__)

View File

@ -278,16 +278,4 @@ nbio_intf_t nbio_orbis = {
nbio_orbis_free,
"nbio_orbis",
};
#else
nbio_intf_t nbio_orbis = {
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
"nbio_orbis",
};
#endif