11 lines
111 B
C
11 lines
111 B
C
#ifndef CPU_H
|
|
#define CPU_H
|
|
|
|
#ifdef __APPLE__
|
|
|
|
float cpu_frequency(void);
|
|
char* cpu_name(void);
|
|
|
|
#endif
|
|
#endif
|