diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-09-09 19:26:54 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-09-09 19:26:54 +0000 |
commit | dd1465da7dc1d30e7bfb903d66105c707307c1ec (patch) | |
tree | e94a5afcbd1191f4a2177bb86b0a30225486b7a4 | |
parent | 76c8d9486751591fa09cc2670cb6f3524657f321 (diff) |
fix typo in function prototype
-rw-r--r-- | usr.bin/tip/aculib/t3000.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tip/aculib/t3000.c b/usr.bin/tip/aculib/t3000.c index 947b28e0024..5355abdbda6 100644 --- a/usr.bin/tip/aculib/t3000.c +++ b/usr.bin/tip/aculib/t3000.c @@ -1,4 +1,4 @@ -/* $OpenBSD: t3000.c,v 1.6 2001/09/04 23:35:59 millert Exp $ */ +/* $OpenBSD: t3000.c,v 1.7 2001/09/09 19:26:53 millert Exp $ */ /* $NetBSD: t3000.c,v 1.5 1997/02/11 09:24:18 mrg Exp $ */ /* @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)t3000.c 8.1 (Berkeley) 6/6/93"; #endif -static char rcsid[] = "$OpenBSD: t3000.c,v 1.6 2001/09/04 23:35:59 millert Exp $"; +static char rcsid[] = "$OpenBSD: t3000.c,v 1.7 2001/09/09 19:26:53 millert Exp $"; #endif /* not lint */ /* @@ -57,7 +57,7 @@ static int timeout = 0; static int connected = 0; static jmp_buf timeoutbuf, intbuf; static int t3000_sync(), t3000_connect(), t3000_swallow(); -static void t3000_napx(); +static void t3000_nap(); t3000_dialer(num, acu) register char *num; |