// RECSTD.CPP
//
// Copyright (c) 1997-1999 Symbian Ltd.  All rights reserved.
//

#include "recstd.h"


GLDEF_C void Panic(TAprPanic aPanic)
//
// Panic the process with APREC as the category.
//
	{
	_LIT(KApRecPan,"APREC");
	User::Panic(KApRecPan,aPanic);
	}

