diff options
author | 2013-11-12 13:54:50 +0000 | |
---|---|---|
committer | 2013-11-12 13:54:50 +0000 | |
commit | 43a6699f77832e0879917856eb200b451c2f994e (patch) | |
tree | c28076a0c14aa7f900521e89554d4d953f7b764c /usr.bin/cu/command.c | |
parent | pull in local .h files to satisfy proto (diff) | |
download | wireguard-openbsd-43a6699f77832e0879917856eb200b451c2f994e.tar.xz wireguard-openbsd-43a6699f77832e0879917856eb200b451c2f994e.zip |
simpler prototype repairs
Diffstat (limited to 'usr.bin/cu/command.c')
-rw-r--r-- | usr.bin/cu/command.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/cu/command.c b/usr.bin/cu/command.c index 54e6490ca19..5c6a1f09399 100644 --- a/usr.bin/cu/command.c +++ b/usr.bin/cu/command.c @@ -1,4 +1,4 @@ -/* $OpenBSD: command.c,v 1.12 2012/07/15 06:55:28 nicm Exp $ */ +/* $OpenBSD: command.c,v 1.13 2013/11/12 13:54:51 deraadt Exp $ */ /* * Copyright (c) 2012 Nicholas Marriott <nicm@openbsd.org> @@ -36,6 +36,8 @@ void pipe_command(void); void connect_command(void); void send_file(void); void send_xmodem(void); +void set_speed(void); +void start_record(void); void pipe_command(void) |