Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion openmp/runtime/src/include/omp.h.var
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,14 @@
#ifndef __OMP_H
# define __OMP_H

# ifndef __has_include
# define __has_include(x) 0
# endif

# include <stddef.h>
# include <stdlib.h>
# if (__has_include(<stdlib.h>))
# include <stdlib.h>
# endif
# include <stdint.h>

# define KMP_VERSION_MAJOR @LIBOMP_VERSION_MAJOR@
Expand Down