Add include guard to ocloc_api.h

Resolves: NEO-5442
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
This commit is contained in:
Mateusz Jablonski
2021-01-13 13:35:35 +00:00
committed by Compute-Runtime-Automation
parent 05b5ad37ea
commit 09f9b2896e

View File

@@ -1,10 +1,16 @@
/*
* Copyright (C) 2020 Intel Corporation
* Copyright (C) 2020-2021 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#ifndef _OCLOC_API_H
#define _OCLOC_API_H
#if defined(__cplusplus)
#pragma once
#endif
#include <cstdint>
#ifndef OCLOC_MAKE_VERSION
@@ -97,3 +103,4 @@ SIGNATURE oclocFreeOutput(uint32_t *numOutputs, uint8_t ***dataOutputs, uint64_t
/// Returns the current version of oclock
SIGNATURE oclocVersion();
}
#endif //_OCLOC_API_H