1
0
mirror of https://github.com/deadw00d/AROS.git synced 2025-11-21 18:33:33 +00:00
Files
AROS-v0/workbench/libs/rexxsyslib/deleterexxmsg.c
Matthias Rustler 6b5a534ce3 workbench: detabbed
2021-05-02 13:55:14 +02:00

51 lines
882 B
C

/*
Copyright (C) 1995-2002, The AROS Development Team. All rights reserved.
Desc:
*/
#include "rexxsyslib_intern.h"
/*****************************************************************************
NAME */
#include <clib/rexxsyslib_protos.h>
AROS_LH1(VOID, DeleteRexxMsg,
/* SYNOPSIS */
AROS_LHA(struct RexxMsg *, packet, A0),
/* LOCATION */
struct RxsLib *, RexxSysBase, 25, RexxSys)
/* FUNCTION
Deletes a RexxMsg structure
INPUTS
packet - The RexxMsg to delete.
RESULT
void
NOTES
EXAMPLE
BUGS
SEE ALSO
CreateRexxMsg()
INTERNALS
*****************************************************************************/
{
AROS_LIBFUNC_INIT
FreeMem(packet, packet->rm_Node.mn_Length);
ReturnVoid("DeleteRexxMsg");
AROS_LIBFUNC_EXIT
} /* DeleteRexxMsg */