Enrico Weigelt, metux IT service 16 years ago
parent
commit
0c97636212
10 changed files with 10 additions and 10 deletions
  1. 1 0
      ChangeLog
  2. 1 1
      edit/usermap.c
  3. 1 1
      edit/usermap.h
  4. 1 2
      src/ecs-test.c
  5. 1 1
      src/ecs.c
  6. 1 1
      src/ecs.h
  7. 1 1
      src/file.c
  8. 1 1
      src/find.c
  9. 1 1
      src/key.c
  10. 1 1
      src/logging.c

+ 1 - 0
ChangeLog

@@ -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>
 

+ 1 - 1
edit/usermap.c

@@ -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>
 

+ 1 - 1
edit/usermap.h

@@ -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"
 

+ 1 - 2
src/ecs-test.c

@@ -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"

+ 1 - 1
src/ecs.c

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

+ 1 - 1
src/ecs.h

@@ -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

+ 1 - 1
src/file.c

@@ -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>

+ 1 - 1
src/find.c

@@ -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>
 

+ 1 - 1
src/key.c

@@ -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>
 

+ 1 - 1
src/logging.c

@@ -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"

Some files were not shown because too many files changed in this diff