this time for real ;)

This commit is contained in:
leitner 2001-11-24 20:11:41 +00:00
parent 59c3777f2c
commit d6ae7e2265
4 changed files with 4 additions and 1 deletions

View File

@ -110,4 +110,4 @@ socket_getifidx.o socket_getifname.o: haven2i.h
socket_connected.o: havesl.h
fmt_xlong.o scan_double.o scan_xlong.o fmt_ip6_flat.o: haveinline.h
fmt_xlong.o scan_xlong.o fmt_ip6_flat.o: haveinline.h

View File

@ -1,4 +1,5 @@
#include "fmt.h"
#include "haveinline.h"
static inline char tohex(char c) {
return c>=10?c-10+'a':c+'0';

View File

@ -1,4 +1,5 @@
#include "scan.h"
#include "haveinline.h"
static inline int fromhex(unsigned char c) {
if (c>='0' && c<='9')

View File

@ -1,4 +1,5 @@
#include "ip6.h"
#include "haveinline.h"
static inline char tohex(char c) {
return c>=10?c-10+'a':c+'0';