12 lines
149 B
C
12 lines
149 B
C
#ifndef _KERNEL_IF_H
|
|
#define _KERNEL_IF_H
|
|
|
|
#include "glibstub.h"
|
|
#ifdef HAVE_NET_IF_H
|
|
#include <net/if.h>
|
|
#else
|
|
#include <linux/if.h>
|
|
#endif
|
|
|
|
#endif
|