Deleted Added
full compact
t3000.c (88276) t3000.c (113163)
1/* $OpenBSD: t3000.c,v 1.9 2001/10/24 18:38:58 millert Exp $ */
2/* $NetBSD: t3000.c,v 1.5 1997/02/11 09:24:18 mrg Exp $ */
3
4/*
5 * Copyright (c) 1992, 1993
6 * The Regents of the University of California. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 21 unchanged lines hidden (view full) ---

30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#include <sys/cdefs.h>
1/* $OpenBSD: t3000.c,v 1.9 2001/10/24 18:38:58 millert Exp $ */
2/* $NetBSD: t3000.c,v 1.5 1997/02/11 09:24:18 mrg Exp $ */
3
4/*
5 * Copyright (c) 1992, 1993
6 * The Regents of the University of California. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 21 unchanged lines hidden (view full) ---

30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 */
36
37#include <sys/cdefs.h>
38__FBSDID("$FreeBSD: head/usr.bin/tip/libacu/t3000.c 88276 2001-12-20 14:25:46Z markm $");
38__FBSDID("$FreeBSD: head/usr.bin/tip/libacu/t3000.c 113163 2003-04-06 08:30:25Z imp $");
39
40#ifndef lint
41#if 0
42static char sccsid[] = "@(#)t3000.c 8.1 (Berkeley) 6/6/93";
43static char rcsid[] = "$OpenBSD: t3000.c,v 1.9 2001/10/24 18:38:58 millert Exp $";
44#endif
45#endif /* not lint */
46

--- 9 unchanged lines hidden (view full) ---

56#define MAXRETRY 5
57
58static void sigALRM();
59static int timeout = 0;
60static int connected = 0;
61static jmp_buf timeoutbuf, intbuf;
62static int t3000_sync(), t3000_connect(), t3000_swallow();
63static void t3000_nap();
39
40#ifndef lint
41#if 0
42static char sccsid[] = "@(#)t3000.c 8.1 (Berkeley) 6/6/93";
43static char rcsid[] = "$OpenBSD: t3000.c,v 1.9 2001/10/24 18:38:58 millert Exp $";
44#endif
45#endif /* not lint */
46

--- 9 unchanged lines hidden (view full) ---

56#define MAXRETRY 5
57
58static void sigALRM();
59static int timeout = 0;
60static int connected = 0;
61static jmp_buf timeoutbuf, intbuf;
62static int t3000_sync(), t3000_connect(), t3000_swallow();
63static void t3000_nap();
64static int t3000_write(int fd, char *cp, int n);
64
65int
66t3000_dialer(num, acu)
67 char *num;
68 char *acu;
69{
70 char *cp;
71 struct termios cntrl;

--- 302 unchanged lines hidden ---
65
66int
67t3000_dialer(num, acu)
68 char *num;
69 char *acu;
70{
71 char *cp;
72 struct termios cntrl;

--- 302 unchanged lines hidden ---