1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-19 01:10:57 -08:00
emacs/mps/src/ref.c
David Moore b3aa92a28d New unit
New amc

Copied from Perforce
 Change: 15014
 ServerID: perforce.ravenbrook.com
1995-10-30 15:15:57 +00:00

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 */