ttyslot.c revision 272461
16751Swpaul/*
26751Swpaul * Copyright (c) 1988, 1993
38857Srgrimes *	The Regents of the University of California.  All rights reserved.
46751Swpaul *
56751Swpaul * Redistribution and use in source and binary forms, with or without
66751Swpaul * modification, are permitted provided that the following conditions
76751Swpaul * are met:
829102Scharnier * 1. Redistributions of source code must retain the above copyright
96751Swpaul *    notice, this list of conditions and the following disclaimer.
1029102Scharnier * 2. Redistributions in binary form must reproduce the above copyright
1129102Scharnier *    notice, this list of conditions and the following disclaimer in the
1250479Speter *    documentation and/or other materials provided with the distribution.
1329102Scharnier * 4. Neither the name of the University nor the names of its contributors
146751Swpaul *    may be used to endorse or promote products derived from this software
1529102Scharnier *    without specific prior written permission.
1629102Scharnier *
1729102Scharnier * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
189718Swpaul * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1929102Scharnier * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
209718Swpaul * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
216751Swpaul * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2229102Scharnier * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2329102Scharnier * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2429102Scharnier * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
256751Swpaul * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2629102Scharnier * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2729102Scharnier * SUCH DAMAGE.
2829102Scharnier */
2936917Speter
3036917Speter#if defined(LIBC_SCCS) && !defined(lint)
316751Swpaulstatic char sccsid[] = "@(#)ttyslot.c	8.1 (Berkeley) 6/4/93";
326751Swpaul#endif /* LIBC_SCCS and not lint */
336751Swpaul#include <sys/cdefs.h>
346751Swpaul__FBSDID("$FreeBSD: releng/10.1/lib/libc/gen/ttyslot.c 202487 2010-01-17 15:43:14Z ed $");
35175823Srink
366751Swpaulint
376751Swpaul__ttyslot(void)
386751Swpaul{
396751Swpaul
40173412Skevlo	return (0);
416751Swpaul}
4229102Scharnier
436751Swpaul__sym_compat(ttyslot, __ttyslot, FBSD_1.0);
446751Swpaul