Subversion Repositories DevTools

Rev

Blame | Last modification | View Log | RSS feed

/* (c) Copyright 1995-2000 A.Young
 *  This software may be used freely so long as this copyright notice is
 *  left intact. There is no warrantee on this software.
 */
#include <stdio.h>
#include <stdlib.h>
#include <setjmp.h>
#include <limits.h>
#include <unistd.h>
#include <libdos.h>
#include "sh.h"

#if (OS_TYPE == OS_DOS)
int
system(const char *arg)
{
    __systeml_sh = 0;
    if (FL_TEST(FLAG_DEBUG_EXECUTE))
      __systeml_debug = 1;

    return long_system(arg, NULL);
}
#endif /*OS_DOS*/