21 lines
352 B
C
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
|