#ifdef HAVE_CONFIG_H

#if defined (CONFIG_BROKETS)
/* We use <config.h> instead of "config.h" so that a compilation
   using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
   (which it would do because it found this file in $srcdir).  */
#include <config.h>
#else
#include "config.h"
#endif
#endif

#include "version.h"
const char *version_string = "GNU sh-utils 1.10";

#ifdef __EMX__

#undef main

int main(int argc, char **argv)
{
  _wildcard(&argc, &argv);
  _response(&argc, &argv);
  set_program_name(argv[0]);
  tzset();
  return os2main(argc, argv);
}

#endif
