diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2014-09-11 06:51:53 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2014-09-11 06:54:55 (GMT) |
commit | 4a49d8146b653a0a2a13e411063d8c06339fb1ec (patch) | |
tree | 9232b30e0f7a6de4f281ddb68b13994793c6ba6d /include | |
parent | c202d0634bb8dbc256841c7b5514357e6674f00a (diff) |
Fixed ICC warnings
Corresponds to the TNG modifications in Roland's commit
c6cebcc190cd in the GROMACS repository.
Change-Id: I44288fc8a69c4c69c9444e663b57cc773e243516
Diffstat (limited to 'include')
-rw-r--r-- | include/tng/tng_io.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/tng/tng_io.h b/include/tng/tng_io.h index a27a027..f3b173c 100644 --- a/include/tng/tng_io.h +++ b/include/tng/tng_io.h @@ -332,6 +332,10 @@ typedef unsigned __int64 uint64_t; # define PRId64 __PRI64_PREFIX "d" #endif +#ifndef PRIu64 +# define PRIu64 __PRI64_PREFIX "u" +#endif + #endif #endif /* USE_STD_INTTYPES_H */ |