mud/fluffos-2.23-ds03/testsuite/command/ed.c
2020-09-06 05:43:07 -07:00

14 lines
181 B
C

#include <globals.h>
int
main(string file)
{
// need to call resolve_path() and query_cwd()
#ifdef __OLD_ED__
ed(file);
#else
this_player()->start_ed(file);
#endif
return 1;
}