Merge commit 'origin/mc-4.6'

This commit is contained in:
Enrico Weigelt, metux IT service 2009-02-04 01:09:19 +01:00
commit 18e9e770c2
3 changed files with 5 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2009-02-04 Enrico Weigelt, metux ITS <weigelt@metux.de>
* mhl/types.h, mhl/escape.h: replaced bool type by stdbool.h (fixing #240)
2009-02-03 Enrico Weigelt, metux ITS <weigelt@metux.de>
* lib/mc.lib: added patch on #219 by angel_il

View File

@ -5,8 +5,7 @@
#include <string.h>
#include <stdlib.h>
#include <mhl/types.h>
#include <stdbool.h>
#define mhl_shell_escape_toesc(x) \
(((x)==' ')||((x)=='!')||((x)=='#')||((x)=='$')||((x)=='%')|| \

View File

@ -7,10 +7,4 @@
#ifndef __MHL_TYPES_H
#define __MHL_TYPES_H
typedef enum
{
false = 0,
true = 1
} bool;
#endif