Minor fixes to comments.
[AROS.git] / rom / exec / obtainquickvector.c
blob6e7d2cbd8977458243103b98f09387cd517907ab
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Obtain and install a Quick Interrupt vector
6 Lang: english
7 */
8 #include "exec_intern.h"
9 #include <proto/exec.h>
11 /*****************************************************************************
13 NAME */
15 AROS_LH1(ULONG, ObtainQuickVector,
17 /* SYNOPSIS */
18 AROS_LHA(APTR, interruptCode, A0),
20 /* LOCATION */
21 struct ExecBase *, SysBase, 131, Exec)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
31 EXAMPLE
33 BUGS
35 SEE ALSO
37 INTERNALS
39 *****************************************************************************/
41 AROS_LIBFUNC_INIT
43 return 0L;
44 AROS_LIBFUNC_EXIT
45 } /* ObtainQuickVector */