aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/systm.h
diff options
context:
space:
mode:
authorConrad Meyer <cem@FreeBSD.org>2018-10-20 18:31:36 +0000
committerConrad Meyer <cem@FreeBSD.org>2018-10-20 18:31:36 +0000
commit6858c2cc8f2ac2b04f096efa38e202492921de47 (patch)
tree73cc0aee5c4a8ffdbcbbe7fba748454b39461b37 /sys/sys/systm.h
parentc9d10e27863717dcd5e4e1778a8163b5d205b3c0 (diff)
downloadsrc-6858c2cc8f2ac2b04f096efa38e202492921de47.tar.gz
src-6858c2cc8f2ac2b04f096efa38e202492921de47.zip
Replace ttyprintf with sbuf_printf and tty drain routine
Add string variants of cnputc and tty_putchar, and use them from the tty sbuf drain routine. Suggested by: ed@ Sponsored by: Dell EMC Isilon
Notes
Notes: svn path=/head/; revision=339468
Diffstat (limited to 'sys/sys/systm.h')
-rw-r--r--sys/sys/systm.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/sys/systm.h b/sys/sys/systm.h
index a008cc39d8de..4e0427927d72 100644
--- a/sys/sys/systm.h
+++ b/sys/sys/systm.h
@@ -290,7 +290,6 @@ int vasprintf(char **ret, struct malloc_type *mtp, const char *format,
int vsnprintf(char *, size_t, const char *, __va_list) __printflike(3, 0);
int vsnrprintf(char *, size_t, int, const char *, __va_list) __printflike(4, 0);
int vsprintf(char *buf, const char *, __va_list) __printflike(2, 0);
-int ttyprintf(struct tty *, const char *, ...) __printflike(2, 3);
int sscanf(const char *, char const * _Nonnull, ...) __scanflike(2, 3);
int vsscanf(const char * _Nonnull, char const * _Nonnull, __va_list) __scanflike(2, 0);
long strtol(const char *, char **, int);