diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2016-04-19 12:23:26 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2016-04-19 12:23:26 +0000 |
commit | 7843b916faa6070f2eb5cbd2c594b56c1e94055d (patch) | |
tree | b555224b45191b4b82d4f55537f4659195a88e05 /sys/ddb/db_input.c | |
parent | 14cac726a35484354099739306f8a7442ea7d34d (diff) |
Do not expose private functions.
Diffstat (limited to 'sys/ddb/db_input.c')
-rw-r--r-- | sys/ddb/db_input.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sys/ddb/db_input.c b/sys/ddb/db_input.c index 2adae7316de..51cb939e173 100644 --- a/sys/ddb/db_input.c +++ b/sys/ddb/db_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_input.c,v 1.15 2016/01/25 14:30:30 mpi Exp $ */ +/* $OpenBSD: db_input.c,v 1.16 2016/04/19 12:23:25 mpi Exp $ */ /* $NetBSD: db_input.c,v 1.7 1996/02/05 01:57:02 christos Exp $ */ /* @@ -46,6 +46,12 @@ * Character input and editing. */ +void db_putstring(char *, int); +void db_putnchars(int, int); +void db_delete(int, int); +void db_delete_line(void); +int db_inputchar(int); + /* * We don't track output position while editing input, * since input always ends with a new-line. We just |