diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-03-03 12:38:53 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-03-03 12:38:53 +0000 |
commit | 5aeba8440e8d2256e4b716030f97e3bf493b725a (patch) | |
tree | 028ad58fe980a353c86fc9c44fd0a5f3be71c5fa /bin/dd/extern.h | |
parent | 1017c29793838bf57e48d99b824f3237afaffebd (diff) |
From NetBSD: Use const qualifier with conversion, args and clist tables
Diffstat (limited to 'bin/dd/extern.h')
-rw-r--r-- | bin/dd/extern.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/bin/dd/extern.h b/bin/dd/extern.h index 981e54eee16..6af8999fe60 100644 --- a/bin/dd/extern.h +++ b/bin/dd/extern.h @@ -1,4 +1,4 @@ -/* $NetBSD: extern.h,v 1.4 1995/03/21 09:04:09 cgd Exp $ */ +/* $NetBSD: extern.h,v 1.7 1996/02/20 19:29:07 jtc Exp $ */ /*- * Copyright (c) 1991, 1993, 1994 @@ -62,6 +62,8 @@ extern u_long cpy_cnt; extern u_int cbsz; extern u_int ddflags; extern u_int files_cnt; -extern u_char *ctab; -extern u_char a2e_32V[], a2e_POSIX[], a2ibm_32V[], a2ibm_POSIX[], e2a_32V[]; -extern u_char e2a_POSIX[], l2u[], u2l[]; +extern const u_char *ctab; +extern const u_char a2e_32V[], a2e_POSIX[]; +extern const u_char e2a_32V[], e2a_POSIX[]; +extern const u_char a2ibm_32V[], a2ibm_POSIX[]; +extern u_char casetab[]; |