aboutsummaryrefslogtreecommitdiff
path: root/libgomp
diff options
context:
space:
mode:
authorKwok Cheung Yeung <kcy@codesourcery.com>2019-05-30 11:58:05 -0700
committerThomas Schwinge <thomas@codesourcery.com>2020-03-03 12:18:11 +0100
commit37d05bf5f72ccb2c71745ef48063c6ec02265135 (patch)
tree108b26b2ba89981f60b6822f60d689af76512b6e /libgomp
parentf513ca2b69d9b7601ff79f518c0c7c842f0adf1f (diff)
downloadgcc-37d05bf5f72ccb2c71745ef48063c6ec02265135.zip
gcc-37d05bf5f72ccb2c71745ef48063c6ec02265135.tar.gz
gcc-37d05bf5f72ccb2c71745ef48063c6ec02265135.tar.bz2
Fix missing gstdint.h error
libgomp/ * libgomp_g.h: Include stdint.h instead of gstdint.h. (cherry picked from openacc-gcc-9-branch commit 9ff104a9f24e99fd137b75bb4e9bf03687ff1cab)
Diffstat (limited to 'libgomp')
-rw-r--r--libgomp/ChangeLog.omp4
-rw-r--r--libgomp/libgomp_g.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/libgomp/ChangeLog.omp b/libgomp/ChangeLog.omp
index 0436191..88d432b 100644
--- a/libgomp/ChangeLog.omp
+++ b/libgomp/ChangeLog.omp
@@ -1,3 +1,7 @@
+2019-05-30 Kwok Cheung Yeung <kcy@codesourcery.com>
+
+ * libgomp_g.h: Include stdint.h instead of gstdint.h.
+
2019-05-20 Julian Brown <julian@codesourcery.com>
* testsuite/libgomp.oacc-c-c++-common/kernels-decompose-1.c: Expect
diff --git a/libgomp/libgomp_g.h b/libgomp/libgomp_g.h
index c317341..410c6f4 100644
--- a/libgomp/libgomp_g.h
+++ b/libgomp/libgomp_g.h
@@ -31,7 +31,7 @@
#include <stdbool.h>
#include <stddef.h>
-#include "gstdint.h"
+#include <stdint.h>
/* barrier.c */