Secret printing in libraries and shell and silencing randcall.

This commit is contained in:
Geoffrey Challen
2016-01-01 11:47:43 -05:00
parent a2b15b77aa
commit 036cae3982
5 changed files with 44 additions and 4 deletions

View File

@@ -56,6 +56,11 @@ int vprintf(const char *fmt, __va_list ap);
int snprintf(char *buf, size_t len, const char *fmt, ...);
int vsnprintf(char *buf, size_t len, const char *fmt, __va_list ap);
/* Automated testing extensions. */
int tprintf(const char *fmt, ...);
int printsf(const char *fmt, ...);
/* Print the argument string and then a newline. Returns 0 or -1 on error. */
int puts(const char *);