File: default-zero.c

package info (click to toggle)
libcpucycles 0~20240318-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 476 kB
  • sloc: ansic: 776; python: 337; sh: 51; makefile: 30
file content (15 lines) | stat: -rw-r--r-- 174 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// version 20230105
// public domain
// djb

#include "cpucycles_internal.h"

long long ticks_setup(void)
{
  return cpucycles_SKIP;
}

long long ticks(void)
{
  return 0;
}