This commit is contained in:
Enrico Weigelt, metux IT service 2009-02-03 18:21:16 +01:00
parent 5d4d91cd36
commit 0c97636212
21 changed files with 21 additions and 23 deletions

View File

@ -8,6 +8,7 @@
* edit/editcmd.c, configure.ac: removed obsolete own implementation of memove (#242)
* mhl/escape.h: including stdbool.h for the bool type (fixing #239)
* mhl/types.h: removed redundant bool type (fixing #239)
* replaced bool type in mhl/types.h by stdbool.h (fixing #240)
2009-02-01 Enrico Weigelt, metux ITS <weigelt@metux.de>

View File

@ -29,8 +29,8 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdbool.h>
#include <mhl/types.h>
#include <mhl/memory.h>
#include <mhl/string.h>

View File

@ -1,7 +1,7 @@
#ifndef MC_USERMAP_H
#define MC_USERMAP_H
#include <mhl/types.h>
#include <stdbool.h>
#define MC_USERMAP ".mc/cedit/cooledit.bindings"

View File

@ -28,8 +28,7 @@
#include <assert.h>
#include <locale.h>
#include <stdio.h>
#include <mhl/types.h>
#include <stdbool.h>
#include "global.h"
#include "ecs.h"

View File

@ -26,8 +26,8 @@
#include <assert.h>
#include <ctype.h>
#include <stdbool.h>
#include <mhl/types.h>
#include <mhl/string.h>
#include "global.h"

View File

@ -44,7 +44,7 @@ typedef char ecs_char;
# define ECS_STR(s) (s)
#endif
#include <mhl/types.h>
#include <stdbool.h>
/*
* String conversion functions between the wide character encoding and

View File

@ -48,8 +48,8 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdbool.h>
#include <mhl/types.h>
#include <mhl/memory.h>
#include <mhl/escape.h>
#include <mhl/string.h>

View File

@ -26,8 +26,8 @@
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <stdbool.h>
#include <mhl/types.h>
#include <mhl/memory.h>
#include <mhl/string.h>

View File

@ -31,8 +31,8 @@
#include <string.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdbool.h>
#include <mhl/types.h>
#include <mhl/memory.h>
#include <mhl/string.h>

View File

@ -25,9 +25,9 @@
#include <stdarg.h>
#include <stdio.h>
#include <stdbool.h>
#include <mhl/memory.h>
#include <mhl/types.h>
#include "global.h"
#include "logging.h"

View File

@ -40,8 +40,8 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdbool.h>
#include <mhl/types.h>
#include <mhl/memory.h>
#include <mhl/string.h>

View File

@ -28,6 +28,7 @@
#include <signal.h>
#include <stdarg.h>
#include <stdbool.h>
#include <mhl/types.h>

View File

@ -25,7 +25,7 @@
#endif /* WANT_TERM_H */
#endif /* USE_NCURSES */
#include <mhl/types.h>
#include <stdbool.h>
/* {{{ Input }}} */

View File

@ -32,7 +32,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <sys/param.h>
#include <sys/types.h>
#include <sys/stat.h>
@ -41,7 +41,6 @@
#endif
#include <unistd.h>
#include <mhl/types.h>
#include <mhl/memory.h>
#include <mhl/string.h>

View File

@ -42,8 +42,8 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdbool.h>
#include <mhl/types.h>
#include <mhl/memory.h>
#include <mhl/string.h>

View File

@ -33,8 +33,8 @@
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <stdbool.h>
#include <mhl/types.h>
#include <mhl/memory.h>
#include <mhl/string.h>

View File

@ -1,7 +1,7 @@
#ifndef MC_WIDGET_H
#define MC_WIDGET_H
#include <mhl/types.h>
#include <stdbool.h>
#include "dialog.h" /* Widget */

View File

@ -36,6 +36,7 @@ typedef int dummy; /* C99 forbids empty compilation unit */
#include <setjmp.h>
#include <X11/Xlib.h>
#include <stdbool.h>
#include <mhl/memory.h>
@ -45,8 +46,6 @@ typedef int dummy; /* C99 forbids empty compilation unit */
# include <gmodule.h>
#endif
#include <mhl/types.h>
#include "x11conn.h"
/*** file scope type declarations **************************************/

View File

@ -25,8 +25,8 @@
#include <stdio.h>
#include <sys/types.h>
#include <stdbool.h>
#include <mhl/types.h>
#include <mhl/string.h>
#undef USE_NCURSES /* Don't include *curses.h */

View File

@ -21,8 +21,8 @@
#include <config.h>
#include <ctype.h>
#include <stdbool.h>
#include <mhl/types.h>
#include <mhl/memory.h>
#include <mhl/string.h>

View File

@ -2,8 +2,7 @@
#define MC_VFS_UTILVFS_H
#include <sys/stat.h>
#include <mhl/types.h>
#include <stdbool.h>
/* Flags for vfs_split_url() */
#define URL_ALLOW_ANON 1