/**********************************************************************
 * lucy_ask.c -- ask-question routine for lucy
 *
 * $Source$
 * $Author$
 * $Header$
 *
 * Copyright 1990 by the Massachusetts Institute of Technology.
 * For copying and distribution information, see the file
 * "mit-copyright.h".
 **********************************************************************/
#include "mit-copyright.h"

#ifndef lint
static char rcsid_lucy_ask_c[] = "$Header$";
#endif /* lint */

#include <stdio.h>
#include "lucy/lucy.h"
tfile unix_tfile();		/* XXX should be in discuss .h file */

void
lucy_ask(argc, argv)
     int argc;
     char *argv[];
{
  system("/afs/athena.mit.edu/astaff/project/lucydev/bin/ask");
  return;
}
