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