diff --git a/reactos/base/shell/cmd/cmd.c b/reactos/base/shell/cmd/cmd.c index a729e2e0ade..4a28527927a 100644 --- a/reactos/base/shell/cmd/cmd.c +++ b/reactos/base/shell/cmd/cmd.c @@ -588,7 +588,7 @@ Execute (LPTSTR Full, LPTSTR First, LPTSTR Rest) * */ -static VOID +VOID DoCommand (LPTSTR line) { TCHAR *com = NULL; /* the first word in the command */ diff --git a/reactos/base/shell/cmd/cmd.h b/reactos/base/shell/cmd/cmd.h index e7ae84a33f6..1fddd2394e1 100644 --- a/reactos/base/shell/cmd/cmd.h +++ b/reactos/base/shell/cmd/cmd.h @@ -98,6 +98,7 @@ VOID ParseCommandLine (LPTSTR); LPCTSTR GetEnvVarOrSpecial ( LPCTSTR varName ); VOID AddBreakHandler (VOID); VOID RemoveBreakHandler (VOID); +VOID DoCommand (LPTSTR line); extern HANDLE CMD_ModuleHandle;