newlines at end of file

This commit is contained in:
Jasmine Iwanek
2022-02-18 21:38:51 -05:00
parent 30e0c7f21b
commit 4287e44824
86 changed files with 55 additions and 92 deletions

View File

@@ -24,4 +24,3 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
Alternatively, the following files carry an additional notice that
explicitly allows relicensing under the GPLv2: lzf.c lzf.h lzfP.h lzf_c.c
lzf_d.c

View File

@@ -25,5 +25,3 @@ DESCRIPTION
AUTHOR
This library was written by Marc Lehmann <schmorp@schmorp.de> (See also
http://software.schmorp.de/pkg/liblzf).

View File

@@ -62,4 +62,3 @@ static const u32 crc_32_tab[] =
#define crc32(crc,byte) (crc_32_tab[(u8)(crc) ^ (u8)(byte)] ^ ((crc) >> 8))
#endif

View File

@@ -534,4 +534,3 @@ main (int argc, char *argv[])
exit (rc ? 1 : 0);
}

View File

@@ -97,4 +97,3 @@ lzf_decompress (const void *const in_data, unsigned int in_len,
void *out_data, unsigned int out_len);
#endif

View File

@@ -182,4 +182,3 @@ typedef LZF_HSLOT LZF_STATE[1 << (HLOG)];
#endif
#endif

View File

@@ -290,4 +290,3 @@ lzf_compress (const void *const in_data, unsigned int in_len,
return op - (u8 *)out_data;
}

View File

@@ -182,4 +182,3 @@ lzf_decompress (const void *const in_data, unsigned int in_len,
return op - (u8 *)out_data;
}