/* cmd-make-version.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-version.h" t_uchar arch_cmd_make_version_help[] = N_("Command no longer available\n"); int arch_cmd_make_version (t_uchar * program_name, int argc, char * argv[]) { safe_printfmt(1, N_("Versions can be made during import, branch or switch\n")); return 1; } /* tag: Tom Lord Wed May 21 09:17:22 2003 (make-version.c) */