Add includes to make .h files self-contained (#526)

This commit is contained in:
James Price
2019-12-19 17:42:58 -05:00
committed by Kévin Petit
parent 71b0a80bd7
commit 841123040e
3 changed files with 5 additions and 0 deletions

View File

@@ -14,6 +14,7 @@
// limitations under the License. // limitations under the License.
// //
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h>
typedef enum typedef enum
{ {

View File

@@ -16,6 +16,8 @@
#ifndef TEST_CONFIG_H #ifndef TEST_CONFIG_H
#define TEST_CONFIG_H #define TEST_CONFIG_H
#include <CL/cl.h>
#define MULTITHREAD 1 #define MULTITHREAD 1
#define kVectorSizeCount 5 #define kVectorSizeCount 5

View File

@@ -16,6 +16,8 @@
#ifndef TESTS_H #ifndef TESTS_H
#define TESTS_H #define TESTS_H
#include <CL/cl.h>
typedef enum typedef enum
{ {
AS_Global, AS_Global,