mirror of https://github.com/MidnightCommander/mc
Include inttypes.h instead of stdint.h.
Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
5ec2e4507c
commit
15013927e7
|
@ -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"
|
||||
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue