ttyslot.c revision 202487
175584Sru/*
275584Sru * Copyright (c) 1988, 1993
375584Sru *	The Regents of the University of California.  All rights reserved.
475584Sru *
575584Sru * Redistribution and use in source and binary forms, with or without
675584Sru * modification, are permitted provided that the following conditions
775584Sru * are met:
875584Sru * 1. Redistributions of source code must retain the above copyright
975584Sru *    notice, this list of conditions and the following disclaimer.
1075584Sru * 2. Redistributions in binary form must reproduce the above copyright
1175584Sru *    notice, this list of conditions and the following disclaimer in the
1275584Sru *    documentation and/or other materials provided with the distribution.
1375584Sru * 4. Neither the name of the University nor the names of its contributors
1475584Sru *    may be used to endorse or promote products derived from this software
1575584Sru *    without specific prior written permission.
1675584Sru *
1775584Sru * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1875584Sru * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1975584Sru * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2075584Sru * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2175584Sru * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2275584Sru * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2375584Sru * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2475584Sru * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2575584Sru * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2675584Sru * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2775584Sru * SUCH DAMAGE.
2875584Sru */
2975584Sru
3075584Sru#if defined(LIBC_SCCS) && !defined(lint)
3175584Srustatic char sccsid[] = "@(#)ttyslot.c	8.1 (Berkeley) 6/4/93";
3275584Sru#endif /* LIBC_SCCS and not lint */
3375584Sru#include <sys/cdefs.h>
3475584Sru__FBSDID("$FreeBSD: head/lib/libc/gen/ttyslot.c 202487 2010-01-17 15:43:14Z ed $");
3575584Sru
3675584Sruint
3775584Sru__ttyslot(void)
3875584Sru{
3975584Sru
4075584Sru	return (0);
4175584Sru}
4275584Sru
4375584Sru__sym_compat(ttyslot, __ttyslot, FBSD_1.0);
4475584Sru