mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-27 04:12:51 +00:00
Make (another) mask_array const. (#307)
This commit is contained in:
@@ -20,8 +20,10 @@
|
||||
|
||||
#include "lowlev1defs.h"
|
||||
|
||||
static int mask_array[16] = {1, 3, 7, 0xf, 0x1f, 0x3f, 0x7f, 0xff,
|
||||
0x1ff, 0x3ff, 0x7ff, 0xfff, 0x1fff, 0x3fff, 0x7fff, 0xffff};
|
||||
static const int mask_array[16] = {
|
||||
1, 3, 7, 0xf, 0x1f, 0x3f, 0x7f, 0xff,
|
||||
0x1ff, 0x3ff, 0x7ff, 0xfff, 0x1fff, 0x3fff, 0x7fff, 0xffff
|
||||
};
|
||||
|
||||
/************************************************************
|
||||
N_OP_putbitsnfd
|
||||
|
||||
Reference in New Issue
Block a user