1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef MELVIX_NETWORK_H #define MELVIX_NETWORK_H void rtl8139_install(); void network_install() { #ifdef rtl8139 rtl8139_install(); #endif } #endif