1
1

Include inttypes.h instead of stdint.h.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Этот коммит содержится в:
Andrew Borodin 2010-11-26 11:31:18 +03:00
родитель 5ec2e4507c
Коммит 15013927e7
6 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

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

Просмотреть файл

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

Просмотреть файл

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

Просмотреть файл

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

Просмотреть файл

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

Просмотреть файл

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