reactos/reactos/base/shell/cmd/setlocal.c
Christoph von Wittich cf39f6646d fix a bug in goto
a stubs for setlocal and endlocal (our default is delayed expansion)

svn path=/trunk/; revision=32073
2008-02-01 09:49:58 +00:00

27 lines
379 B
C

/*
* GOTO.C - goto internal batch command.
*
* History:
*
* 1 Feb 2008 (Christoph von Wittich)
* started.
*/
#include <precomp.h>
/* unimplemented */
/* our current default is delayedexpansion */
INT cmd_setlocal (LPTSTR cmd, LPTSTR param)
{
return 0;
}
/* endlocal doesn't take any params */
INT cmd_endlocal (LPTSTR cmd, LPTSTR param)
{
return 0;
}