Use stdint.h instead of inttypes.h as the latter pollutes namespace more

MFC after: 3 days
X-MFC with: r292004
Submitted by: bde
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
Enji Cooper 2015-12-09 09:14:57 +00:00
parent a934d06194
commit c6e615506b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=292013
2 changed files with 6 additions and 6 deletions

View File

@ -31,10 +31,10 @@ __FBSDID("$FreeBSD$");
#include "namespace.h"
#include <assert.h>
#include <errno.h>
#ifdef DEBUG
#include <inttypes.h>
#endif
#include <limits.h>
#ifdef DEBUG
#include <stdint.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

View File

@ -31,10 +31,10 @@ __FBSDID("$FreeBSD$");
#include "namespace.h"
#include <assert.h>
#include <errno.h>
#ifdef DEBUG
#include <inttypes.h>
#endif
#include <limits.h>
#ifdef DEBUG
#include <stdint.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>