/* cmd-make-category.c * **************************************************************** * Copyright (C) 2003 Tom Lord * * See the file "COPYING" for further information about * the copyright and warranty status of this work. */ #include "po/gettext.h" #include "hackerlab/cmd/main.h" #include "libarch/namespace.h" #include "commands/make-category.h" t_uchar arch_cmd_make_category_help[] = N_("Command no longer available\n"); int arch_cmd_make_category (t_uchar * program_name, int argc, char * argv[]) { safe_printfmt(1, N_("Categories can be made during import, branch or switch\n")); return 1; } /* tag: Tom Lord Tue May 20 19:45:17 2003 (make-category.c) */