mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
428e233f37
This reverts commit 60f2d8d3c0
.
17 lines
167 B
C
17 lines
167 B
C
/*
|
|
|
|
Micro Helper Library: generic type declarations
|
|
|
|
*/
|
|
|
|
#ifndef __MHL_TYPES_H
|
|
#define __MHL_TYPES_H
|
|
|
|
typedef enum
|
|
{
|
|
false = 0,
|
|
true = 1
|
|
} bool;
|
|
|
|
#endif
|