summaryrefslogtreecommitdiffstats
path: root/src/zstd/contrib/linux-kernel/test/include/linux/math64.h
blob: 3d0ae72d583a59bace37d5db7788572cde8973a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef LINUX_MATH64_H
#define LINUX_MATH64_H

#include <stdint.h>

static uint64_t div_u64(uint64_t n, uint32_t d)
{
  return n / d;
}

#endif