mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-18 17:01:01 -08:00
This was achieved by partially undoing changelist 24817, including an accidental corruption of eventgen.pl. Copied from Perforce Change: 24877 ServerID: perforce.ravenbrook.com
23 lines
417 B
C
23 lines
417 B
C
/* impl.c.ssan: ANSI STACK SCANNER
|
|
*
|
|
* $Id$
|
|
* $HopeName: MMsrc!ssan.c(trunk.3) $
|
|
* Copyright (c) 2001 Ravenbrook Limited.
|
|
*
|
|
* 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, "$Id$");
|
|
|
|
|
|
Res StackScan(ScanState ss, Addr *stackBot)
|
|
{
|
|
UNUSED(ss); UNUSED(stackBot);
|
|
return ResUNIMPL;
|
|
}
|