1210677Snwhitehorn/*-
2210677Snwhitehorn * Copyright 2008 by Nathan Whitehorn. All rights reserved.
3210677Snwhitehorn *
4210677Snwhitehorn * Redistribution and use in source and binary forms, with or without
5210677Snwhitehorn * modification, are permitted provided that the following conditions
6210677Snwhitehorn * are met:
7210677Snwhitehorn * 1. Redistributions of source code must retain the above copyright
8210677Snwhitehorn *    notice, this list of conditions and the following disclaimer.
9210677Snwhitehorn * 2. Redistributions in binary form must reproduce the above copyright
10210677Snwhitehorn *    notice, this list of conditions and the following disclaimer in the
11210677Snwhitehorn *    documentation and/or other materials provided with the distribution.
12210677Snwhitehorn *
13210677Snwhitehorn * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
14210677Snwhitehorn * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15210677Snwhitehorn * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16210677Snwhitehorn * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17210677Snwhitehorn * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
18210677Snwhitehorn * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19210677Snwhitehorn * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
20210677Snwhitehorn * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
21210677Snwhitehorn * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22210677Snwhitehorn * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23210677Snwhitehorn * SUCH DAMAGE.
24210677Snwhitehorn *
25210677Snwhitehorn * $FreeBSD$
26210677Snwhitehorn */
27210677Snwhitehorn
28210677Snwhitehorn#ifndef _MAMBO_MAMBOCALL_H_
29210677Snwhitehorn#define _MAMBO_MAMBOCALL_H_
30210677Snwhitehorn
31210677Snwhitehornlong mambocall(int op, ...);
32210677Snwhitehorn
33210677Snwhitehorn#endif /* _MAMBO_MAMBOCALL_H_ */
34