1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-23 07:12:12 -07:00
emacs/mps/code/ssan.c
Richard Brooksby c84f2a8553 Updating copyright messages to say copyright 2001 ravenbrook throughout.
Adding some missing copyright messages.

Copied from Perforce
 Change: 24818
 ServerID: perforce.ravenbrook.com
2001-12-05 16:18:43 +00:00

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;
}