From: ceriel Date: Thu, 19 Mar 1987 10:15:58 +0000 (+0000) Subject: made name shorter X-Git-Tag: release-5-5~4364 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=8829d771443a963d357080debcc8cd6f4984bdbd;p=ack.git made name shorter --- diff --git a/mach/proto/top/top.h b/mach/proto/top/top.h index 8e923e322..382d00762 100644 --- a/mach/proto/top/top.h +++ b/mach/proto/top/top.h @@ -38,7 +38,7 @@ typedef struct instruction *instr_p; typedef struct pattern_descr *patdescr_p; typedef struct instr_descr *idescr_p; -typedef struct template *templ_p; +typedef struct templat *templ_p; struct instruction { instr_p fw; @@ -71,7 +71,7 @@ struct pattern_descr { idescr_p repl; }; -struct template { +struct templat { char *lctxt; int varno; char *rctxt; @@ -79,7 +79,7 @@ struct template { struct instr_descr { char *opcode; - struct template templates[MAXOP]; + struct templat templates[MAXOP]; }; typedef int bool;