added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / libs / rexxsyslib / deleterexxmsg.c
blobd00ac8c673f66b1c369ec9c3beb9970a052a265d
1 /*
2 Copyright © 1995-2002, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
8 #include "rexxsyslib_intern.h"
10 /*****************************************************************************
12 NAME */
13 #include <clib/rexxsyslib_protos.h>
15 AROS_LH1(VOID, DeleteRexxMsg,
17 /* SYNOPSIS */
18 AROS_LHA(struct RexxMsg *, packet, A0),
20 /* LOCATION */
21 struct Library *, RexxSysBase, 25, RexxSys)
23 /* FUNCTION
24 Deletes a RexxMsg structure
26 INPUTS
27 packet - The RexxMsg to delete.
29 RESULT
30 void
32 NOTES
34 EXAMPLE
36 BUGS
38 SEE ALSO
39 CreateRexxMsg()
41 INTERNALS
44 *****************************************************************************/
46 AROS_LIBFUNC_INIT
48 FreeMem(packet, packet->rm_Node.mn_Length);
50 ReturnVoid("DeleteRexxMsg");
51 AROS_LIBFUNC_EXIT
52 } /* DeleteRexxMsg */