diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-09 12:47:42 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-09 12:47:42 (GMT) |
commit | ea37cbf48b84b75a9ec535af679d6104757e4271 (patch) | |
tree | 07df943c7ca93ff3200601fba71ef304a29ba275 /include | |
parent | 0fad649af860bebdc3b4e422700b721c0f09007d (diff) |
Fixing many compiler warnings.
Diffstat (limited to 'include')
-rw-r--r-- | include/tng_io.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/tng_io.h b/include/tng_io.h index 7ddae0e..30aa4fa 100644 --- a/include/tng_io.h +++ b/include/tng_io.h @@ -279,6 +279,7 @@ /* Visual Studio does not contain inttypes.h and stdint.h. Some defines and * typedefs are used from the GNU C Library */ +#ifndef _STDINT_H /* This first part is from stdint.h (GNU C Library) */ #ifndef __int8_t_defined # define __int8_t_defined @@ -309,6 +310,7 @@ __extension__ #endif typedef unsigned long long int uint64_t; #endif +#endif /* This is from inttypes.h (GNU C Library) */ /* The ISO C99 standard specifies that these macros must only be |