exec_prot_support.c revision 272345
116945Smchung/*      $NetBSD: exec_prot_support.c,v 1.1 2014/08/10 05:47:38 matt Exp $ */
216945Smchung
316945Smchung/*-
416945Smchung * Copyright (c) 2014 The NetBSD Foundation, Inc.
516945Smchung * All rights reserved.
616945Smchung *
716945Smchung * This code is derived from software contributed to The NetBSD Foundation
816945Smchung * by Matt Thomas of 3am Software Foundry.
916945Smchung *
1016945Smchung * Redistribution and use in source and binary forms, with or without
1116945Smchung * modification, are permitted provided that the following conditions
1216945Smchung * are met:
1316945Smchung * 1. Redistributions of source code must retain the above copyright
1416945Smchung *    notice, this list of conditions and the following disclaimer.
1516945Smchung * 2. Redistributions in binary form must reproduce the above copyright
1616945Smchung *    notice, this list of conditions and the following disclaimer in the
1716945Smchung *    documentation and/or other materials provided with the distribution.
1816945Smchung *
1916945Smchung * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
2016945Smchung * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
2116945Smchung * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
2216945Smchung * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
2316945Smchung * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
2416945Smchung * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
2516945Smchung * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
2616945Smchung * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
2716945Smchung * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
2816945Smchung * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 */
31
32#include <sys/cdefs.h>
33__RCSID("$NetBSD: exec_prot_support.c,v 1.1 2014/08/10 05:47:38 matt Exp $");
34
35#include "../../common/exec_prot.h"
36
37int
38exec_prot_support(void)
39{
40	return NOTIMPL;
41}
42