mirror of
https://github.com/sheumann/hush.git
synced 2024-12-22 14:30:31 +00:00
Minor .o file naming change
This commit is contained in:
parent
7cb6ef7982
commit
343658582b
@ -67,7 +67,7 @@ LIBBB_MOBJ1:=xmalloc.o xrealloc.o xcalloc.o xstrdup.o xstrndup.o \
|
|||||||
xferror.o xferror_stdout.o xfflush_stdout.o strlen.o
|
xferror.o xferror_stdout.o xfflush_stdout.o strlen.o
|
||||||
|
|
||||||
LIBBB_MSRC2:=$(LIBBB_DIR)printf.c
|
LIBBB_MSRC2:=$(LIBBB_DIR)printf.c
|
||||||
LIBBB_MOBJ2:=vfprintf.o vprintf.o fprintf.o printf.o
|
LIBBB_MOBJ2:=bb_vfprintf.o bb_vprintf.o bb_fprintf.o bb_printf.o
|
||||||
|
|
||||||
LIBBB_MSRC3:=$(LIBBB_DIR)xgetularg.c
|
LIBBB_MSRC3:=$(LIBBB_DIR)xgetularg.c
|
||||||
LIBBB_MOBJ3:=xgetularg_bnd_sfx.o xgetlarg_bnd_sfx.o getlarg10_sfx.o \
|
LIBBB_MOBJ3:=xgetularg_bnd_sfx.o xgetlarg_bnd_sfx.o getlarg10_sfx.o \
|
||||||
|
@ -125,7 +125,7 @@
|
|||||||
#error Your stdio library is currently not supported. Please see the commented source.
|
#error Your stdio library is currently not supported. Please see the commented source.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef L_vfprintf
|
#ifdef L_bb_vfprintf
|
||||||
extern int bb_vfprintf(FILE * __restrict stream,
|
extern int bb_vfprintf(FILE * __restrict stream,
|
||||||
const char * __restrict format,
|
const char * __restrict format,
|
||||||
va_list arg)
|
va_list arg)
|
||||||
@ -140,14 +140,14 @@ extern int bb_vfprintf(FILE * __restrict stream,
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef L_vprintf
|
#ifdef L_bb_vprintf
|
||||||
extern int bb_vprintf(const char * __restrict format, va_list arg)
|
extern int bb_vprintf(const char * __restrict format, va_list arg)
|
||||||
{
|
{
|
||||||
return bb_vfprintf(stdout, format, arg);
|
return bb_vfprintf(stdout, format, arg);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef L_fprintf
|
#ifdef L_bb_fprintf
|
||||||
extern int bb_fprintf(FILE * __restrict stream,
|
extern int bb_fprintf(FILE * __restrict stream,
|
||||||
const char * __restrict format, ...)
|
const char * __restrict format, ...)
|
||||||
{
|
{
|
||||||
@ -162,7 +162,7 @@ extern int bb_fprintf(FILE * __restrict stream,
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef L_printf
|
#ifdef L_bb_printf
|
||||||
extern int bb_printf(const char * __restrict format, ...)
|
extern int bb_printf(const char * __restrict format, ...)
|
||||||
{
|
{
|
||||||
va_list arg;
|
va_list arg;
|
||||||
|
Loading…
Reference in New Issue
Block a user