mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-19 01:10:57 -08:00
23 lines
347 B
C
23 lines
347 B
C
/* impl.c.ref
|
|
*
|
|
* REFERENCES
|
|
*
|
|
* $HopeName$
|
|
*
|
|
* Copyright (C) 1995 Harlequin Group, all rights reserved
|
|
*/
|
|
|
|
#include "std.h"
|
|
#include "ref.h"
|
|
|
|
|
|
#ifdef DEBUG_ASSERT
|
|
|
|
Bool RefRankIsValid(RefRank rank, ValidationType validParam)
|
|
{
|
|
AVER(rank >= 0);
|
|
AVER(rank < RefRankMAX);
|
|
return TRUE;
|
|
}
|
|
|
|
#endif /* DEBUG_ASSERT */
|