exec_prot_support.c revision 272458
164562Sgshapiro/*      $NetBSD: exec_prot_support.c,v 1.1 2011/07/18 23:16:09 jym Exp $ */
2261363Sgshapiro
364562Sgshapiro/*-
464562Sgshapiro * Copyright (c) 2011 The NetBSD Foundation, Inc.
564562Sgshapiro * All rights reserved.
664562Sgshapiro *
764562Sgshapiro * This code is derived from software contributed to The NetBSD Foundation
864562Sgshapiro * by Jean-Yves Migeon.
964562Sgshapiro *
1064562Sgshapiro * Redistribution and use in source and binary forms, with or without
1190792Sgshapiro * modification, are permitted provided that the following conditions
12261363Sgshapiro * are met:
1364562Sgshapiro * 1. Redistributions of source code must retain the above copyright
1464562Sgshapiro *    notice, this list of conditions and the following disclaimer.
1564562Sgshapiro * 2. Redistributions in binary form must reproduce the above copyright
1664562Sgshapiro *    notice, this list of conditions and the following disclaimer in the
1766494Sgshapiro *    documentation and/or other materials provided with the distribution.
1864562Sgshapiro *
1964562Sgshapiro * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
2064562Sgshapiro * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2164562Sgshapiro * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2264562Sgshapiro * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
2364562Sgshapiro * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24141858Sgshapiro * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25141858Sgshapiro * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26141858Sgshapiro * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2790792Sgshapiro * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2864562Sgshapiro * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
2964562Sgshapiro * POSSIBILITY OF SUCH DAMAGE.
3064562Sgshapiro */
3164562Sgshapiro
3264562Sgshapiro#include <sys/cdefs.h>
3364562Sgshapiro__RCSID("$NetBSD: exec_prot_support.c,v 1.1 2011/07/18 23:16:09 jym Exp $");
3464562Sgshapiro
3564562Sgshapiro#include "../../common/exec_prot.h"
3664562Sgshapiro
3764562Sgshapiroint
3864562Sgshapiroexec_prot_support(void)
3964562Sgshapiro{
4064562Sgshapiro	return NOTIMPL;
4164562Sgshapiro}
4290792Sgshapiro