search for: c5b1981

Displaying 1 result from an estimated 1 matches for "c5b1981".

Did you mean: 511981
2009 Dec 10
1
[PATCH] [RFC] lib: add a hex dump lib function
...644 --- a/com32/include/stdio.h +++ b/com32/include/stdio.h @@ -114,4 +114,6 @@ __extern void perror(const char *); __extern int rename(const char *, const char *); +__extern void hexdump(const void *, int, int); + #endif /* _STDIO_H */ diff --git a/com32/lib/Makefile b/com32/lib/Makefile index c5b1981..50fd07f 100644 --- a/com32/lib/Makefile +++ b/com32/lib/Makefile @@ -25,7 +25,7 @@ LIBOBJS = \ strtoimax.o strtok.o strtol.o strtoll.o strtoul.o strtoull.o \ strtoumax.o vfprintf.o vprintf.o vsnprintf.o vsprintf.o \ asprintf.o vasprintf.o strlcpy.o strlcat.o \ - vsscanf.o zalloc.o \...