mirror of
https://github.com/lz4/lz4.git
synced 2024-11-27 11:53:59 +08:00
67532ae3c5
streamlined Makefile. avoid usage of -lrt (problematic for portability). now bench_functions (renamed) can be part of `make test`. fix #1276
14 lines
269 B
C
14 lines
269 B
C
// LZ4 trivial example : print Library version number
|
|
// by Takayuki Matsuoka
|
|
|
|
|
|
#include <stdio.h>
|
|
#include "lz4.h"
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
(void)argc; (void)argv;
|
|
printf("Hello World ! LZ4 Library version = %d\n", LZ4_versionNumber());
|
|
return 0;
|
|
}
|