11.1Sjym/*      $NetBSD: exec_prot_support.c,v 1.1 2011/07/18 23:16:10 jym Exp $ */
21.1Sjym
31.1Sjym/*-
41.1Sjym * Copyright (c) 2011 The NetBSD Foundation, Inc.
51.1Sjym * All rights reserved.
61.1Sjym *
71.1Sjym * This code is derived from software contributed to The NetBSD Foundation
81.1Sjym * by Jean-Yves Migeon.
91.1Sjym *
101.1Sjym * Redistribution and use in source and binary forms, with or without
111.1Sjym * modification, are permitted provided that the following conditions
121.1Sjym * are met:
131.1Sjym * 1. Redistributions of source code must retain the above copyright
141.1Sjym *    notice, this list of conditions and the following disclaimer.
151.1Sjym * 2. Redistributions in binary form must reproduce the above copyright
161.1Sjym *    notice, this list of conditions and the following disclaimer in the
171.1Sjym *    documentation and/or other materials provided with the distribution.
181.1Sjym *
191.1Sjym * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
201.1Sjym * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
211.1Sjym * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
221.1Sjym * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
231.1Sjym * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
241.1Sjym * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
251.1Sjym * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
261.1Sjym * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
271.1Sjym * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
281.1Sjym * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
291.1Sjym * POSSIBILITY OF SUCH DAMAGE.
301.1Sjym */
311.1Sjym
321.1Sjym#include <sys/cdefs.h>
331.1Sjym__RCSID("$NetBSD: exec_prot_support.c,v 1.1 2011/07/18 23:16:10 jym Exp $");
341.1Sjym
351.1Sjym#include "../../common/exec_prot.h"
361.1Sjym
371.1Sjymint
381.1Sjymexec_prot_support(void)
391.1Sjym{
401.1Sjym	return NOTIMPL;
411.1Sjym}
42