summaryrefslogtreecommitdiff
path: root/Cython/Includes/openmp.pxd
diff options
context:
space:
mode:
authorMark Florisson <markflorisson88@gmail.com>2011-10-22 19:30:25 +0100
committerMark Florisson <markflorisson88@gmail.com>2011-10-22 19:30:25 +0100
commit1165829fb487b6274962252ef57d9c93e647d101 (patch)
tree79bfa37ae7d93a179876918add6800ac982da96b /Cython/Includes/openmp.pxd
parent9f572351f64a8170fc63689b17259f2c1aed16ae (diff)
downloadcython-1165829fb487b6274962252ef57d9c93e647d101.tar.gz
Make omp_lock_(nest)_t complete types
Diffstat (limited to 'Cython/Includes/openmp.pxd')
-rw-r--r--Cython/Includes/openmp.pxd6
1 files changed, 4 insertions, 2 deletions
diff --git a/Cython/Includes/openmp.pxd b/Cython/Includes/openmp.pxd
index 07543d8ee..3359ab1e5 100644
--- a/Cython/Includes/openmp.pxd
+++ b/Cython/Includes/openmp.pxd
@@ -1,6 +1,8 @@
cdef extern from "omp.h":
- ctypedef struct omp_lock_t
- ctypedef struct omp_nest_lock_t
+ ctypedef struct omp_lock_t:
+ pass
+ ctypedef struct omp_nest_lock_t:
+ pass
ctypedef enum omp_sched_t:
omp_sched_static = 1,