mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
15 lines
591 B
C
15 lines
591 B
C
#include "libc/x/x.h"
|
|
|
|
static _Atomic(void *) cp932ext_decmap_ptr;
|
|
static const unsigned char cp932ext_decmap_rodata[] = {
|
|
0x63, 0x60, 0x18, 0x05, 0x23, 0x1d, 0x30, 0x32, 0xc4, 0x9f, 0xc2, 0x26, 0x9e,
|
|
0xcb, 0xe0, 0x30, 0x67, 0x34, 0x74, 0x06, 0x1f, 0x38, 0xc5, 0xe0, 0xf0, 0xa7,
|
|
0x9d, 0xd1, 0xe1, 0x0f, 0x29, 0x7a, 0x5c, 0x98, 0x1c, 0xfe, 0x30, 0x32, 0x3b,
|
|
0xfc, 0xd9, 0xc7, 0xec, 0xe0, 0x8d, 0x2c, 0x0e, 0x00,
|
|
};
|
|
|
|
optimizesize void *cp932ext_decmap(void) {
|
|
return xload(&cp932ext_decmap_ptr,
|
|
cp932ext_decmap_rodata,
|
|
48, 1024); /* 4.6875% profit */
|
|
}
|