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