mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-18 00:21:25 +01:00
8 lines
125 B
C
8 lines
125 B
C
|
/* getif.h */
|
||
|
|
||
|
#ifdef __STDC__
|
||
|
extern struct ifreq *getif(int, struct in_addr *);
|
||
|
#else
|
||
|
extern struct ifreq *getif();
|
||
|
#endif
|