mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 20:00:46 -08:00
This change will be integrated but ignored (-ay) to the gg-epcore/union sources, so that they retain HopeNames. Copied from Perforce Change: 24911 ServerID: perforce.ravenbrook.com
22 lines
379 B
C
22 lines
379 B
C
/* impl.c.ssan: ANSI STACK SCANNER
|
|
*
|
|
* $Id$
|
|
* 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;
|
|
}
|