diff options
author | Andreas Tobler <a.tobler@schweiz.org> | 2008-04-16 21:30:11 +0000 |
---|---|---|
committer | Andreas Tobler <andreast@gcc.gnu.org> | 2008-04-16 23:30:11 +0200 |
commit | ed0840baf21bda16649dccab87ae57439dd82031 (patch) | |
tree | 55707f27357ebf73afc4d83783bf1a58dff12b43 /libstdc++-v3/src/atomic.cc | |
parent | 7f27b0f8a21d8ca08c2ea815a3fdb0816b77b867 (diff) | |
download | gcc-ed0840baf21bda16649dccab87ae57439dd82031.tar.gz |
re PR libstdc++/35915 (atomic.cc:31:20: error: stdint.h: No such file)
2008-04-16 Andreas Tobler <a.tobler@schweiz.org>
PR libstdc++/35915
* configure.ac: Use GCC_HEADER_STDINT.
* src/atomic.cc: Include gstdint.h
* configure: Regenerate.
* Makefile.in: Likewise.
* doc/Makefile.in: Likewise.
* include/Makefile.in: Likewise.
* libmath/Makefile.in: Likewise.
* libsupc++/Makefile.in: Likewise.
* po/Makefile.in: Likewise.
* src/Makefile.in: Likewise.
* testsuite/Makefile.in: Likewise.
* aclocal.m4: Likewise.
From-SVN: r134368
Diffstat (limited to 'libstdc++-v3/src/atomic.cc')
-rw-r--r-- | libstdc++-v3/src/atomic.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/src/atomic.cc b/libstdc++-v3/src/atomic.cc index e43733332db..e09a9d201b1 100644 --- a/libstdc++-v3/src/atomic.cc +++ b/libstdc++-v3/src/atomic.cc @@ -28,7 +28,7 @@ // invalidate any other reasons why the executable file might be covered by // the GNU General Public License. -#include <stdint.h> +#include "gstdint.h" #include <cstdatomic> #define LOGSIZE 4 |