port-linux.h revision 162852
1162852Sdes/* $Id: port-linux.h,v 1.1 2006/04/22 11:26:08 djm Exp $ */
2162852Sdes
3162852Sdes/*
4162852Sdes * Copyright (c) 2006 Damien Miller <djm@openbsd.org>
5162852Sdes *
6162852Sdes * Permission to use, copy, modify, and distribute this software for any
7162852Sdes * purpose with or without fee is hereby granted, provided that the above
8162852Sdes * copyright notice and this permission notice appear in all copies.
9162852Sdes *
10162852Sdes * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11162852Sdes * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12162852Sdes * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13162852Sdes * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14162852Sdes * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15162852Sdes * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16162852Sdes * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17162852Sdes */
18162852Sdes
19162852Sdes#ifndef _PORT_LINUX_H
20162852Sdes#define _PORT_LINUX_H
21162852Sdes
22162852Sdes#ifdef WITH_SELINUX
23162852Sdesvoid ssh_selinux_setup_pty(char *, const char *);
24162852Sdesvoid ssh_selinux_setup_exec_context(char *);
25162852Sdes#endif
26162852Sdes
27162852Sdes#endif /* ! _PORT_LINUX_H */
28