/**********************************************************************
 * lucy_browse.c -- browse-meetings 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_browse_c[] = "$Header$";
#endif /* lint */

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

void
lucy_browse(argc, argv)
     int argc;
     char *argv[];
{
  long code;
/*
  code = lucy_qnb(NULL);
  if (code) {
    com_err(argv[0], code, "");
    return;
  }
*/
  system("/afs/athena.mit.edu/astaff/project/lucydev/bin/lucybrowse");
  return;
}
