Test initialisation of MUIA_List_AdjustWidth and MUIA_List_AdjustHeight, and
[AROS.git] / arch / .unmaintained / ppc-native / exec / alloctrap.c
blob42657d02a3051d0d3ae6050fecb1af5c2c5c13a9
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Allocate a trap
6 Lang: english
7 */
9 #include "exec_intern.h"
10 #include <proto/exec.h>
12 /*****************************************************************************
14 NAME */
16 AROS_LH1(LONG, AllocTrap,
18 /* SYNOPSIS */
19 AROS_LHA(long, trapNum, D0),
21 /* LOCATION */
22 struct ExecBase *, SysBase, 57, Exec)
24 /* FUNCTION
26 INPUTS
28 RESULT
30 NOTES
32 EXAMPLE
34 BUGS
36 SEE ALSO
38 INTERNALS
40 HISTORY
41 29-10-95 digulla automatically created from
42 exec_lib.fd and clib/exec_protos.h
44 *****************************************************************************/
46 AROS_LIBFUNC_INIT
48 return -1L;
49 AROS_LIBFUNC_EXIT
50 } /* AllocTrap */