Renamed 'os_info' to 'sys_info'

This commit is contained in:
netbenixcn 2020-06-03 09:05:07 +02:00
parent e9b8368830
commit acf771ed1d
7 changed files with 17 additions and 17 deletions

View file

@ -5,7 +5,7 @@
#include <string.h>
#include <time.h>
#include "os_info.h"
#include "sys_info.h"
#include "logger.h"
#include <cpuid.h>

View file

@ -1,5 +1,5 @@
#ifndef _OS_INFO_H_
#define _OS_INFO_H_
#ifndef _SYS_INFO_H_
#define _SYS_INFO_H_
static inline void native_cpuid(unsigned int *eax, unsigned int *ebx, unsigned int *ecx, unsigned int *edx);
unsigned int getCPUStepping();