Include inttypes.h instead of stdint.h.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2010-11-26 11:31:18 +03:00
parent 5ec2e4507c
commit 15013927e7
6 changed files with 6 additions and 6 deletions

View File

@ -35,7 +35,7 @@
/* includes fcntl.h see IEEE Std 1003.1-2008 */
#include <time.h>
#include <sys/time.h> /* gettimeofday() */
#include <stdint.h> /* uintmax_t */
#include <inttypes.h> /* uintmax_t */
#include "lib/global.h"

View File

@ -54,7 +54,7 @@
#include <sys/time.h> /* gettimeofday() */
#include <stdlib.h>
#include <string.h>
#include <stdint.h> /* uintmax_t */
#include <inttypes.h> /* uintmax_t */
#include "lib/global.h"
#include "lib/tty/tty.h" /* enable/disable interrupt key */

View File

@ -84,7 +84,7 @@ What to do with this?
#include <ctype.h>
#include <fcntl.h>
#include <sys/time.h> /* gettimeofday() */
#include <stdint.h> /* uintmax_t */
#include <inttypes.h> /* uintmax_t */
#include "lib/global.h"
#include "lib/util.h"

View File

@ -53,7 +53,7 @@
#include <string.h> /* for g_memmove() */
#ifdef MC_ENABLE_DEBUGGING_CODE
#include <stdint.h> /* uintmax_t */
#include <inttypes.h> /* uintmax_t */
#endif
#include "lib/global.h"

View File

@ -36,7 +36,7 @@
*/
#include <config.h>
#include <stdint.h> /* uintmax_t */
#include <inttypes.h> /* uintmax_t */
#include "lib/global.h"
#include "lib/skin.h"

View File

@ -39,7 +39,7 @@
#include <errno.h>
#include <fcntl.h>
#include <stdint.h> /* uintmax_t */
#include <inttypes.h> /* uintmax_t */
#include "lib/global.h"
#include "lib/tty/tty.h"