d8cba83d42
git-subtree-dir: projects/rocr-runtime git-subtree-mainline:ad0fb25ed5git-subtree-split:72061a9024
13 lines
261 B
C
Executable File
13 lines
261 B
C
Executable File
#ifndef HSA_PERF_SRC_UTILS_OS_H_
|
|
#define HSA_PERF_SRC_UTILS_OS_H_
|
|
|
|
#include <stdio.h>
|
|
|
|
// Set envriroment variable
|
|
void SetEnv(const char* env_var_name, const char* env_var_value);
|
|
|
|
// Get the value of enviroment
|
|
char* GetEnv(const char* env_var_name);
|
|
|
|
#endif
|