synf-core/source/lib/osx/cpu.h

12 lines
146 B
C

#ifndef CPU_H
#define CPU_H
#ifdef __APPLE__
float get_cpu_freq(void);
char* get_cpu_name(void);
void get_cpu_temperature(void);
#endif
#endif