| // SPDX-License-Identifier: GPL-2.0-only |
| /* |
| * LZO1X Compressor from LZO |
| * |
| * Copyright (C) 1996-2012 Markus F.X.J. Oberhumer <[email protected]> |
| * |
| * The full LZO package can be found at: |
| * http://www.oberhumer.com/opensource/lzo/ |
| * |
| * Changed for Linux kernel use by: |
| * Nitin Gupta <[email protected]> |
| * Richard Purdie <[email protected]> |
| */ |
| |
| #define LZO_SAFE(name) name##_safe |
| #define HAVE_OP(x) ((size_t)(op_end - op) >= (size_t)(x)) |
| |
| #include "lzo1x_compress.c" |