1*5f4852e2Sriastradh /* $NetBSD: frame.h,v 1.1 2022/10/25 23:38:02 riastradh Exp $ */ 2*5f4852e2Sriastradh 3*5f4852e2Sriastradh /*- 4*5f4852e2Sriastradh * Copyright (c) 2022 The NetBSD Foundation, Inc. 5*5f4852e2Sriastradh * All rights reserved. 6*5f4852e2Sriastradh * 7*5f4852e2Sriastradh * Redistribution and use in source and binary forms, with or without 8*5f4852e2Sriastradh * modification, are permitted provided that the following conditions 9*5f4852e2Sriastradh * are met: 10*5f4852e2Sriastradh * 1. Redistributions of source code must retain the above copyright 11*5f4852e2Sriastradh * notice, this list of conditions and the following disclaimer. 12*5f4852e2Sriastradh * 2. Redistributions in binary form must reproduce the above copyright 13*5f4852e2Sriastradh * notice, this list of conditions and the following disclaimer in the 14*5f4852e2Sriastradh * documentation and/or other materials provided with the distribution. 15*5f4852e2Sriastradh * 16*5f4852e2Sriastradh * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 17*5f4852e2Sriastradh * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 18*5f4852e2Sriastradh * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 19*5f4852e2Sriastradh * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 20*5f4852e2Sriastradh * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 21*5f4852e2Sriastradh * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 22*5f4852e2Sriastradh * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 23*5f4852e2Sriastradh * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 24*5f4852e2Sriastradh * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 25*5f4852e2Sriastradh * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 26*5f4852e2Sriastradh * POSSIBILITY OF SUCH DAMAGE. 27*5f4852e2Sriastradh */ 28*5f4852e2Sriastradh 29*5f4852e2Sriastradh #ifndef _LINUX_FRAME_H_ 30*5f4852e2Sriastradh #define _LINUX_FRAME_H_ 31*5f4852e2Sriastradh 32*5f4852e2Sriastradh #define STACK_FRAME_NON_STANDARD(func) /* nothing */ 33*5f4852e2Sriastradh 34*5f4852e2Sriastradh #endif /* _LINUX_FRAME_H_ */ 35