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/unlockrexxbase.c
Matthias Rustler 6b5a534ce3 workbench: detabbed
2021-05-02 13:55:14 +02:00

47 lines
762 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, UnlockRexxBase,
/* SYNOPSIS */
AROS_LHA(ULONG, resource, D0),
/* LOCATION */
struct RxsLib *, RexxSysBase, 76, RexxSys)
/* FUNCTION
INPUTS
RESULT
NOTES
EXAMPLE
BUGS
SEE ALSO
INTERNALS
*****************************************************************************/
{
AROS_LIBFUNC_INIT
ReleaseSemaphore(&RSBI(RexxSysBase)->semaphore);
ReturnVoid("UnlockRexxBase");
AROS_LIBFUNC_EXIT
} /* UnlockRexxBase */