1
0
mirror of https://github.com/deadw00d/AROS.git synced 2025-12-08 22:46:36 +00:00
Files
AROS-v0/rom/utility/clearmem.c
Matthias Rustler a131b2b09f rom: detabbed
2021-05-02 14:00:32 +02:00

44 lines
658 B
C

/*
Copyright (C) 2020, The AROS Development Team. All rights reserved.
*/
/*****************************************************************************
NAME */
#include <proto/utility.h>
AROS_LH2(VOID, ClearMem,
/* SYNOPSIS */
AROS_LHA(APTR, destination, A0),
AROS_LHA(ULONG, size, D0),
/* LOCATION */
struct UtilityBase *, UtilityBase, 50, Utility)
/* FUNCTION
INPUTS
RESULT
NOTES
EXAMPLE
BUGS
SEE ALSO
INTERNALS
HISTORY
*****************************************************************************/
{
AROS_LIBFUNC_INIT
AROS_LIBFUNC_EXIT
} /* ClearMem */