mirror of
https://github.com/clearlinux/graphene.git
synced 2026-09-06 22:01:29 +00:00
Graphene had some paths to internal files generated at compile time and hardcoded into the output binary, which disallowed e.g. moving the Graphene directory after compilation.
11 lines
202 B
C
11 lines
202 B
C
#ifndef _LINUX_UTILS_H
|
|
#define _LINUX_UTILS_H
|
|
|
|
double get_bogomips_from_cpuinfo_buf(const char* buf);
|
|
double sanitize_bogomips_value(double);
|
|
|
|
char* get_main_exec_path(void);
|
|
|
|
#endif // _LINUX_UTILS_H
|
|
|