File: time.h

package info (click to toggle)
rust-zstd-sys 2.0.13-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 236 kB
  • sloc: ansic: 57; makefile: 4
file content (13 lines) | stat: -rw-r--r-- 229 bytes parent folder | download
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