diff options
author | 2008-06-25 15:26:33 +0000 | |
---|---|---|
committer | 2008-06-25 15:26:33 +0000 | |
commit | 7c859c40c6464d9b76e0e44f5847f63275b2eebf (patch) | |
tree | 6a8c4bedffdd94400bc0622f705df08de0fbb9e8 /gnu/usr.bin/cvs/src | |
parent | no need for sparc/sparc64 ifdefs, since this file is sparc only (diff) | |
download | wireguard-openbsd-7c859c40c6464d9b76e0e44f5847f63275b2eebf.tar.xz wireguard-openbsd-7c859c40c6464d9b76e0e44f5847f63275b2eebf.zip |
handle sparc64 seperately; ok miod
Diffstat (limited to 'gnu/usr.bin/cvs/src')
-rw-r--r-- | gnu/usr.bin/cvs/src/import.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/usr.bin/cvs/src/import.c b/gnu/usr.bin/cvs/src/import.c index 833c74e2434..84a80cac36f 100644 --- a/gnu/usr.bin/cvs/src/import.c +++ b/gnu/usr.bin/cvs/src/import.c @@ -899,6 +899,9 @@ static const struct compair comtable[] = #ifdef __sparc__ {"s", "! "}, /* assembler */ #endif +#ifdef __sparc64__ + {"s", "! "}, /* assembler */ +#endif #ifdef __mc68000__ {"s", "| "}, /* assembler */ #endif |