Subversion Repositories SvarDOS

Rev

Rev 353 | Rev 363 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 353 Rev 357
Line 10... Line 10...
10
 
10
 
11
#include "cmd/set.c"
11
#include "cmd/set.c"
12
 
12
 
13
#include "cmd.h"
13
#include "cmd.h"
14
 
14
 
15
int cmd_process(int argc, const char **argv, unsigned short env_seg) {
15
int cmd_process(int argc, const char **argv, unsigned short env_seg, const char far *cmdline) {
16
 
16
 
17
  if (imatch(argv[0], "set")) return(cmd_set(argc, argv, env_seg));
17
  if (imatch(argv[0], "set")) return(cmd_set(argc, argv, env_seg, cmdline));
18
 
18
 
19
  return(-2); /* command is not recognized as internal */
19
  return(-2); /* command is not recognized as internal */
20
}
20
}