diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2008-01-08 00:48:30 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2008-01-08 00:48:30 +0200 |
commit | e2417b2b9134f3f65e14b61e23cd3644d8954353 (patch) | |
tree | 18ac44c6136dbb59a6b76058592d4d5528ec2951 /src/common/physmem.h | |
parent | Updated fi.po although it's currently pretty much crap. (diff) | |
download | xz-e2417b2b9134f3f65e14b61e23cd3644d8954353.tar.xz |
More pre-C99 inttypes.h compatibility fixes. Now the code
should work even if the system has no inttypes.h.
Diffstat (limited to '')
-rw-r--r-- | src/common/physmem.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/common/physmem.h b/src/common/physmem.h index 1d40b299..597227ac 100644 --- a/src/common/physmem.h +++ b/src/common/physmem.h @@ -14,17 +14,6 @@ #ifndef PHYSMEM_H #define PHYSMEM_H -#ifdef HAVE_CONFIG_H -# include <config.h> -#endif - -#include <sys/types.h> -#include <inttypes.h> - -#ifdef HAVE_LIMITS_H -# include <limits.h> -#endif - #if defined(HAVE_PHYSMEM_SYSCTL) || defined(HAVE_NCPU_SYSCTL) # ifdef HAVE_SYS_PARAM_H # include <sys/param.h> |