mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 15:26:47 +00:00
11 lines
198 B
C
11 lines
198 B
C
#pragma once
|
|
#include "stddef.h"
|
|
#include <arch/arch.h>
|
|
#if ARCH(I386) || ARCH(X86_64)
|
|
#include <arch/x86_64/math/bitcount.h>
|
|
#else
|
|
#error Arch not supported.
|
|
#endif
|
|
|
|
int64_t pow(int64_t x, int y);
|