[libclc] 222/291: Don't include <stddef.h>

Andreas Beckmann anbe at moszumanska.debian.org
Tue Sep 8 10:53:52 UTC 2015


This is an automated email from the git hooks/post-receive script.

anbe pushed a commit to branch master
in repository libclc.

commit 229064524b0384ac3e7397ebe29424b8d6ddb11c
Author: Jeroen Ketema <j.ketema at imperial.ac.uk>
Date:   Tue Nov 18 14:19:27 2014 +0000

    Don't include <stddef.h>
    
    Including a standard or system header isn't allowed in OpenCL.
    
    The type "size_t" needs to be explicitely defined now.
    
    v2: Use __SIZE_TYPE__ instead of unsigned int.
    v3: Define ptrdiff_t and NULL.
    
    Patch-by: Jean-Sébastien Pédron
    Reviewed-by: Jeroen Ketema
    Reviewed-by: Jan Vesely
    
    
    git-svn-id: https://llvm.org/svn/llvm-project/libclc/trunk@222235 91177308-0d34-0410-b5e6-96231b3b80d8
---
 generic/include/clc/clctypes.h | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/generic/include/clc/clctypes.h b/generic/include/clc/clctypes.h
index ca1372d..2e3db60 100644
--- a/generic/include/clc/clctypes.h
+++ b/generic/include/clc/clctypes.h
@@ -1,12 +1,13 @@
 /* 6.1.1 Built-in Scalar Data Types */
 
-#include <stddef.h>
-
 typedef unsigned char uchar;
 typedef unsigned short ushort;
 typedef unsigned int uint;
 typedef unsigned long ulong;
 
+typedef __SIZE_TYPE__ size_t;
+typedef __PTRDIFF_TYPE__ ptrdiff_t;
+
 #define __stdint_join3(a,b,c) a ## b ## c
 
 #define  __intn_t(n) __stdint_join3(__INT, n, _TYPE__)
@@ -84,3 +85,5 @@ typedef __attribute__((ext_vector_type(4))) double double4;
 typedef __attribute__((ext_vector_type(8))) double double8;
 typedef __attribute__((ext_vector_type(16))) double double16;
 #endif
+
+#define NULL ((void *)0)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-opencl/libclc.git



More information about the Pkg-opencl-commits mailing list