1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-23 23:36:27 -07:00
emacs/mps/code/ssan.c
Nick Barnes 88e5e63275 Branch imports for masters.
Copied from Perforce
 Change: 23678
 ServerID: perforce.ravenbrook.com
2001-10-31 14:40:56 +00:00

22 lines
412 B
C

/* impl.c.ssan: ANSI STACK SCANNER
*
* $HopeName$
* Copyright (C) 1996 Harlequin Limited. All rights reserved.
*
* This module provides zero functionality. It exists to feed the
* linker (prevent linker errors).
*/
#include "mpmtypes.h"
#include "misc.h"
#include "ss.h"
SRCID(ssan, "$HopeName$");
Res StackScan(ScanState ss, Addr *stackBot)
{
UNUSED(ss); UNUSED(stackBot);
return ResUNIMPL;
}