Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 270607 | Differences between
and this patch

Collapse All | Expand All

(-)kBuild-0.1.5-orig/src/ash/output.c (+2 lines)
Lines 230-235 Link Here
230
	va_end(ap);
230
	va_end(ap);
231
}
231
}
232
232
233
#if 0
233
void
234
void
234
dprintf(const char *fmt, ...)
235
dprintf(const char *fmt, ...)
235
{
236
{
Lines 240-245 Link Here
240
	va_end(ap);
241
	va_end(ap);
241
	flushout(out2);
242
	flushout(out2);
242
}
243
}
244
#endif
243
245
244
void
246
void
245
fmtstr(char *outbuf, size_t length, const char *fmt, ...)
247
fmtstr(char *outbuf, size_t length, const char *fmt, ...)
(-)kBuild-0.1.5-orig/src/ash/output.h (+2 lines)
Lines 65-72 Link Here
65
    __attribute__((__format__(__printf__,2,3)));
65
    __attribute__((__format__(__printf__,2,3)));
66
void out1fmt(const char *, ...)
66
void out1fmt(const char *, ...)
67
    __attribute__((__format__(__printf__,1,2)));
67
    __attribute__((__format__(__printf__,1,2)));
68
#if 0
68
void dprintf(const char *, ...)
69
void dprintf(const char *, ...)
69
    __attribute__((__format__(__printf__,1,2)));
70
    __attribute__((__format__(__printf__,1,2)));
71
#endif
70
void fmtstr(char *, size_t, const char *, ...)
72
void fmtstr(char *, size_t, const char *, ...)
71
    __attribute__((__format__(__printf__,3,4)));
73
    __attribute__((__format__(__printf__,3,4)));
72
void doformat(struct output *, const char *, va_list);
74
void doformat(struct output *, const char *, va_list);

Return to bug 270607