libowfat/tryn2i.c
leitner 35942878c2 $ make WERROR=-Werror now builds with -Werror
add some single char escaping routines to fmt.h
pull in html5 entities from w3c and use those to do a proper scan_html decoding
fix an off-by-one in fmt_to_array
add a ton of unit tests for the fmt routines
2014-03-13 22:25:20 +00:00

11 lines
178 B
C

#include <sys/types.h>
#include <sys/socket.h>
#include <net/if.h>
int main() {
static char ifname[IFNAMSIZ];
char *tmp=if_indextoname(0,ifname);
(void)tmp;
return 0;
}