blob: 0e262e4adb9371bc2792b67c29216e1c16ace4da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef INCLUDED
#define INCLUDED
#pragma OPENCL EXTENSION all : begin
#pragma OPENCL EXTENSION all : end
#pragma OPENCL EXTENSION my_ext : begin
struct A {
int a;
};
#pragma OPENCL EXTENSION my_ext : end
#pragma OPENCL EXTENSION my_ext : end
#define my_ext
typedef struct A TypedefOfA;
typedef const __private TypedefOfA* PointerOfA;
void f(void);
__attribute__((overloadable)) void g(long x);
__attribute__((overloadable)) void g(void);
#endif // INCLUDED
|