Subversion Repositories SvarDOS

Rev

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

Rev 444 Rev 448
Line 75... Line 75...
75
#include "cmd.h"
75
#include "cmd.h"
76
#include "env.h"
76
#include "env.h"
77
#include "helpers.h"
77
#include "helpers.h"
78
#include "redir.h"
78
#include "redir.h"
79
#include "rmodinit.h"
79
#include "rmodinit.h"
-
 
80
#include "sayonara.h"
80
 
81
 
81
#define FLAG_EXEC_AND_QUIT 1
82
#define FLAG_EXEC_AND_QUIT 1
82
 
83
 
83
struct config {
84
struct config {
84
  unsigned char flags;
85
  unsigned char flags;
Line 474... Line 475...
474
    if I am still alive then external command failed to execute */
475
    if I am still alive then external command failed to execute */
475
    outputnl("Bad command or file name");
476
    outputnl("Bad command or file name");
476
 
477
 
477
  } while ((cfg.flags & FLAG_EXEC_AND_QUIT) == 0);
478
  } while ((cfg.flags & FLAG_EXEC_AND_QUIT) == 0);
478
 
479
 
-
 
480
  sayonara(rmod_seg);
479
  return(0);
481
  return(0);
480
}
482
}