diff options
author | tschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-07 15:07:46 +0000 |
---|---|---|
committer | tschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-11-07 15:07:46 +0000 |
commit | e1417b504c23d178359112996aaa70d80e7461e5 (patch) | |
tree | edc8c5f6cc344ad6d7849959391e38bb2b81508d /libgomp | |
parent | 4d07f291fe3d0b2025d72de738f954c275ed2730 (diff) | |
download | gcc-e1417b504c23d178359112996aaa70d80e7461e5.tar.gz |
Add missing include.
libgomp/
* libgomp_g.h: Include <stddef.h> for size_t.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@204518 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgomp')
-rw-r--r-- | libgomp/ChangeLog | 2 | ||||
-rw-r--r-- | libgomp/libgomp_g.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 507a589200e..081850c87b8 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,5 +1,7 @@ 2013-11-07 Thomas Schwinge <thomas@codesourcery.com> + * libgomp_g.h: Include <stddef.h> for size_t. + * libgomp.spec.in: Update comment about libgomp's dependencies. * configure.ac: Likewise. * configure: Regenerate. diff --git a/libgomp/libgomp_g.h b/libgomp/libgomp_g.h index 32c4cf61421..577956a50dc 100644 --- a/libgomp/libgomp_g.h +++ b/libgomp/libgomp_g.h @@ -29,6 +29,7 @@ #define LIBGOMP_G_H 1 #include <stdbool.h> +#include <stddef.h> /* barrier.c */ |