diff options
| author | jdolecek <jdolecek@NetBSD.org> | 2001-01-18 20:28:15 +0000 |
|---|---|---|
| committer | jdolecek <jdolecek@NetBSD.org> | 2001-01-18 20:28:15 +0000 |
| commit | 34c8ae80dab7dff7ee69b219c6bf49ca6e84e73f (patch) | |
| tree | 625354b477ae0db6bb663fa25ffc8be7214a49a0 /sys/dev/ic/advmcode.h | |
| parent | e912e655e179f7c8dd5317da1faff48b8b02cf8e (diff) | |
constify
Diffstat (limited to 'sys/dev/ic/advmcode.h')
| -rw-r--r-- | sys/dev/ic/advmcode.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ic/advmcode.h b/sys/dev/ic/advmcode.h index 1e213f6fbac..e58303969df 100644 --- a/sys/dev/ic/advmcode.h +++ b/sys/dev/ic/advmcode.h @@ -1,4 +1,4 @@ -/* $NetBSD: advmcode.h,v 1.3 1998/09/26 16:02:57 dante Exp $ */ +/* $NetBSD: advmcode.h,v 1.4 2001/01/18 20:28:17 jdolecek Exp $ */ /* * Generic driver definitions and exported functions for the Advanced @@ -41,8 +41,8 @@ #ifndef ADV_MCODE_H #define ADV_MCODE_H -extern u_int8_t asc_mcode[]; -extern u_int16_t asc_mcode_size; -extern u_int32_t asc_mcode_chksum; +extern const u_int8_t asc_mcode[]; +extern const u_int16_t asc_mcode_size; +extern const u_int32_t asc_mcode_chksum; #endif /* ADV_MCODE_H */ |
