1
0
Fork 0
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:
Veselin Georgiev 2009-01-27 01:54:48 +00:00
parent 677c04ee67
commit f1e141b751
2 changed files with 251 additions and 251 deletions

View file

@ -80,7 +80,7 @@ int cpuid_exists_by_eflags(void)
* are implemented in separate .asm files. Otherwise, use inline assembly * are implemented in separate .asm files. Otherwise, use inline assembly
*/ */
#ifdef INLINE_ASM_SUPPORTED #ifdef INLINE_ASM_SUPPORTED
void exec_cpiud(uint32_t *regs) void exec_cpuid(uint32_t *regs)
{ {
#ifdef COMPILER_GCC #ifdef COMPILER_GCC
# ifdef PLATFORM_X64 # ifdef PLATFORM_X64

View file

@ -47,6 +47,6 @@
#endif #endif
int cpuid_exists_by_eflags(void); int cpuid_exists_by_eflags(void);
void exec_cpiud(uint32_t *regs); void exec_cpuid(uint32_t *regs);
#endif /* __ASM_BITS_H__ */ #endif /* __ASM_BITS_H__ */