Fixed missing fprintf argument.
[AROS.git] / rom / dos / cliinitnewcli.c
bloba79c4223febe904f53d5d49e22ea0a2cae2181ce
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: English
7 */
8 #include "dos_intern.h"
10 /*****************************************************************************
12 NAME */
13 #include <dos/dosextens.h>
14 #include <proto/dos.h>
16 AROS_LH1(IPTR, CliInitNewcli,
18 /* SYNOPSIS */
19 AROS_LHA(struct DosPacket *, dp, A0),
21 /* LOCATION */
22 struct DosLibrary *, DOSBase, 155, Dos)
24 /* FUNCTION
26 Set up a process to be a shell using a startup packet.
28 INPUTS
30 packet -- startup arguments passed as a packet
32 RESULT
34 NOTES
36 This function is obsolete as AROS don't use packets. There is no need
37 for this function as functionality is added in other places to deal
38 with things taken care of by this function. Furthermore, the Amiga
39 startup packet interface was a pile of crap.
41 EXAMPLE
43 BUGS
45 SEE ALSO
47 CliInitRun()
49 INTERNALS
51 *****************************************************************************/
53 AROS_LIBFUNC_INIT
54 AROS_LIBBASE_EXT_DECL(struct DosLibrary *,DOSBase)
56 return 0;
58 AROS_LIBFUNC_EXIT
59 } /* CliInitNewcli */