mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-24 21:41:48 -08:00
17 lines
321 B
C
17 lines
321 B
C
/* impl.c.ssan: ANSI STACK SCANNER
|
|
*
|
|
* $HopeName: MMsrc!ssan.c(trunk.1) $
|
|
*
|
|
* This module provides zero functionality. It exists to feed the
|
|
* linker (prevent linker errors).
|
|
*/
|
|
|
|
#include "mpm.h"
|
|
#include "ss.h"
|
|
|
|
|
|
Res StackScan(ScanState ss, Addr *stackBot)
|
|
{
|
|
UNUSED(ss); UNUSED(stackBot);
|
|
return ResUNIMPL;
|
|
}
|