Comhaid
Mario Limonciello 8b529e7b29 Run pre-commit's whitespace related hooks on projects/rocr-runtime/samples (#2126)
In order for pre-commit to be useful, everything needs to meet a common
baseline.

Signed-off-by: Mario Limonciello (AMD) <superm1@kernel.org>
2026-01-08 15:36:57 -05:00

19 línte
369 B
C
Comhad Infheidhmithe

/*
* Copyright © Advanced Micro Devices, Inc., or its affiliates.
*
* SPDX-License-Identifier: MIT
*/
#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