mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
7 lines
125 B
C
7 lines
125 B
C
/* getif.h */
|
|
|
|
#ifdef __STDC__
|
|
extern struct ifreq *getif(int, struct in_addr *);
|
|
#else
|
|
extern struct ifreq *getif();
|
|
#endif
|