aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/image/lzma-loader/src/LzmaTypes.h
diff options
context:
space:
mode:
authorMathias Kresin <dev@kresin.me>2016-10-02 14:27:45 +0200
committerMathias Kresin <dev@kresin.me>2016-10-19 19:06:15 +0200
commit1f7a03a7060390ea5ea9f80d520527051653b7fc (patch)
tree0bded1792ea3335c26dd9704cbe10fc76f85687e /target/linux/lantiq/image/lzma-loader/src/LzmaTypes.h
parent17094e9e642ffca19c6b6681766d2bcbb8e6e565 (diff)
downloadupstream-1f7a03a7060390ea5ea9f80d520527051653b7fc.tar.gz
upstream-1f7a03a7060390ea5ea9f80d520527051653b7fc.tar.bz2
upstream-1f7a03a7060390ea5ea9f80d520527051653b7fc.zip
lantiq: drop lzma-loader
It isn't used any more. Signed-off-by: Mathias Kresin <dev@kresin.me>
Diffstat (limited to 'target/linux/lantiq/image/lzma-loader/src/LzmaTypes.h')
-rw-r--r--target/linux/lantiq/image/lzma-loader/src/LzmaTypes.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/target/linux/lantiq/image/lzma-loader/src/LzmaTypes.h b/target/linux/lantiq/image/lzma-loader/src/LzmaTypes.h
deleted file mode 100644
index 9c27290757..0000000000
--- a/target/linux/lantiq/image/lzma-loader/src/LzmaTypes.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
-LzmaTypes.h
-
-Types for LZMA Decoder
-
-This file written and distributed to public domain by Igor Pavlov.
-This file is part of LZMA SDK 4.40 (2006-05-01)
-*/
-
-#ifndef __LZMATYPES_H
-#define __LZMATYPES_H
-
-#ifndef _7ZIP_BYTE_DEFINED
-#define _7ZIP_BYTE_DEFINED
-typedef unsigned char Byte;
-#endif
-
-#ifndef _7ZIP_UINT16_DEFINED
-#define _7ZIP_UINT16_DEFINED
-typedef unsigned short UInt16;
-#endif
-
-#ifndef _7ZIP_UINT32_DEFINED
-#define _7ZIP_UINT32_DEFINED
-#ifdef _LZMA_UINT32_IS_ULONG
-typedef unsigned long UInt32;
-#else
-typedef unsigned int UInt32;
-#endif
-#endif
-
-/* #define _LZMA_NO_SYSTEM_SIZE_T */
-/* You can use it, if you don't want <stddef.h> */
-
-#ifndef _7ZIP_SIZET_DEFINED
-#define _7ZIP_SIZET_DEFINED
-#ifdef _LZMA_NO_SYSTEM_SIZE_T
-typedef UInt32 SizeT;
-#else
-#include <stddef.h>
-typedef size_t SizeT;
-#endif
-#endif
-
-#endif