zstd-sys 2.1.0+zstd.1.5.7

Low-level bindings for the zstd compression library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _TIME_H
#define _TIME_H

#define CLOCKS_PER_SEC 1000

typedef unsigned long long clock_t;

// Clock is just use for progress reporting, which we disable anyway.
inline clock_t clock() {
    return 0;
}

#endif // _TIME_H