Improvements to comments etc.
[AROS.git] / workbench / libs / asl / allocfilerequest.c
blob097cbd2181684ea2452a59fb0dfc79c9eaf6b816
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
9 /*****************************************************************************
11 NAME */
12 #include <proto/asl.h>
13 #include "asl_intern.h"
14 #include <aros/libcall.h>
16 AROS_LH0(struct FileRequester *, AllocFileRequest,
18 /* SYNOPSIS */
19 /* void */
21 /* LOCATION */
22 struct Library *, AslBase, 5, Asl)
24 /* FUNCTION
25 Obsolete. Use AllocAslRequest() instead.
27 INPUTS
29 RESULT
31 NOTES
33 EXAMPLE
35 BUGS
37 SEE ALSO
38 AllocAslRequest()
40 INTERNALS
42 HISTORY
43 27-11-96 digulla automatically created from
44 asl_lib.fd and clib/asl_protos.h
46 *****************************************************************************/
48 AROS_LIBFUNC_INIT
50 return ((struct FileRequester *)AllocAslRequest(ASL_FileRequest, NULL));
52 AROS_LIBFUNC_EXIT
53 } /* AllocFileRequest */