12 lines
139 B
C
12 lines
139 B
C
#ifndef CPU_H
|
|
#define CPU_H
|
|
|
|
#ifdef __gnu_linux__
|
|
|
|
float cpu_freq(void);
|
|
char* cpu_name(void);
|
|
void cpu_temperature(void);
|
|
|
|
#endif
|
|
#endif
|