diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2013-11-07 16:07:46 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2013-11-07 16:07:46 +0100 |
commit | 70f05c436243dd9ca862663f2c05bda86f49719c (patch) | |
tree | edc8c5f6cc344ad6d7849959391e38bb2b81508d | |
parent | de14871c88330996f2aeec4f9331aee85b664bd7 (diff) | |
download | gcc-70f05c436243dd9ca862663f2c05bda86f49719c.zip gcc-70f05c436243dd9ca862663f2c05bda86f49719c.tar.gz gcc-70f05c436243dd9ca862663f2c05bda86f49719c.tar.bz2 |
Add missing include.
libgomp/
* libgomp_g.h: Include <stddef.h> for size_t.
From-SVN: r204518
-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 507a589..081850c 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 32c4cf6..577956a 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 */ |