add casts to zune macros to silence some warnings
[tangerine.git] / workbench / libs / security / secEnumChildren.c
blob0b441899cf1da2a1a278e4200b0005ab8343c745
1 /*
2 Copyright © 2002-2007, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <stdio.h>
8 #include "security_intern.h"
10 #define DEBUG 1
11 #include <aros/debug.h>
13 /*****************************************************************************
15 NAME */
16 AROS_LH3(LONG, secEnumChildren,
18 /* SYNOPSIS */
19 /* (task, kids, size) */
20 AROS_LHA(struct Task *, task, A0),
21 AROS_LHA(struct Task **, kids, A1),
22 AROS_LHA(LONG, size, D0),
24 /* LOCATION */
25 struct Library *, SecurityBase, 36, Security)
27 /* FUNCTION
29 INPUTS
32 RESULT
35 NOTES
38 EXAMPLE
40 BUGS
42 SEE ALSO
45 INTERNALS
47 HISTORY
49 *****************************************************************************/
51 AROS_LIBFUNC_INIT
53 D(bug( DEBUG_NAME_STR "secEnumChildren()\n") );
55 return NULL;
57 AROS_LIBFUNC_EXIT
59 } /* secEnumChildren */