Skip to content

Commit

Permalink
fix api naming (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
zchrissirhcz authored Feb 21, 2024
1 parent b1429b4 commit 446ef8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

int main()
{
raupu_init();
ruapu_init();

#define PRINT_ISA_SUPPORT(isa) fprintf(stderr, "%s = %d\n", #isa, ruapu_supports(#isa));

Expand Down
4 changes: 2 additions & 2 deletions ruapu.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef RUAPU_H
#define RUAPU_H

void raupu_init();
void ruapu_init();

int ruapu_supports(const char* isa);

Expand Down Expand Up @@ -242,7 +242,7 @@ RUAPU_ISAENTRY(vfpv4)

#undef RUAPU_ISAENTRY

void raupu_init()
void ruapu_init()
{
for (size_t i = 0; i < sizeof(g_ruapu_isa_map) / sizeof(g_ruapu_isa_map[0]); i++)
{
Expand Down

0 comments on commit 446ef8d

Please sign in to comment.