ruapu/ruapu.h
2024-02-21 15:26:27 +08:00

21 lines
352 B
C

// SPDX-License-Identifier: MIT
// Copyright (c) 2024 nihui (https://github.com/nihui)
// Copyright (c) 2024 kernelbin (https://github.com/kernelbin)
//
// ruapu --- detect cpu isa features with single-file
#ifndef RUAPU_H
#define RUAPU_H
void raupu_init()
{
}
int ruapu_supports(const char* isa)
{
(void)isa;
return 0;
}
#endif // RUAPU_H