mirror of
https://github.com/anrieff/libcpuid
synced 2024-11-10 22:59:13 +00:00
Again, exec_cpiud->exec_cpuid, this time in .c files. It's funny how a typo like this could exist this long :)
git-svn-id: https://svn.code.sf.net/p/libcpuid/code/HEAD/libcpuid@55 3b4be424-7ac5-41d7-8526-f4ddcb85d872
This commit is contained in:
parent
677c04ee67
commit
f1e141b751
2 changed files with 251 additions and 251 deletions
|
@ -80,7 +80,7 @@ int cpuid_exists_by_eflags(void)
|
|||
* are implemented in separate .asm files. Otherwise, use inline assembly
|
||||
*/
|
||||
#ifdef INLINE_ASM_SUPPORTED
|
||||
void exec_cpiud(uint32_t *regs)
|
||||
void exec_cpuid(uint32_t *regs)
|
||||
{
|
||||
#ifdef COMPILER_GCC
|
||||
# ifdef PLATFORM_X64
|
||||
|
|
|
@ -47,6 +47,6 @@
|
|||
#endif
|
||||
|
||||
int cpuid_exists_by_eflags(void);
|
||||
void exec_cpiud(uint32_t *regs);
|
||||
void exec_cpuid(uint32_t *regs);
|
||||
|
||||
#endif /* __ASM_BITS_H__ */
|
||||
|
|
Loading…
Reference in a new issue