diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-08-06 14:26:53 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-08-06 14:26:53 +0000 |
commit | c1fb72af034fd49539274309e077944b65f7c5e9 (patch) | |
tree | 09efd4b4d55f12dc9a72820a7a22f17f277bd85f /sys/arch/mvme68k | |
parent | 4fef8cb8856d9106052f768eff3a79acf2aca52c (diff) |
We do not need a char machine_arch[] constant.
ok deraadt@
Diffstat (limited to 'sys/arch/mvme68k')
-rw-r--r-- | sys/arch/mvme68k/mvme68k/machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme68k/mvme68k/machdep.c b/sys/arch/mvme68k/mvme68k/machdep.c index 9500076003a..9f5066b499d 100644 --- a/sys/arch/mvme68k/mvme68k/machdep.c +++ b/sys/arch/mvme68k/mvme68k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.87 2004/09/29 07:34:42 miod Exp $ */ +/* $OpenBSD: machdep.c,v 1.88 2005/08/06 14:26:52 miod Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -115,7 +115,7 @@ #include <uvm/uvm_extern.h> /* the following is used externally (sysctl_hw) */ -char machine[] = "mvme68k"; /* cpu "architecture" */ +char machine[] = MACHINE; /* cpu "architecture" */ struct vm_map *exec_map = NULL; struct vm_map *phys_map = NULL; |