diff options
Diffstat (limited to '')
-rw-r--r-- | daemon/daemon_aux.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/daemon/daemon_aux.h b/daemon/daemon_aux.h index 04a504d..e0b1954 100644 --- a/daemon/daemon_aux.h +++ b/daemon/daemon_aux.h @@ -24,7 +24,13 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.* /*headers*/ #include <stdio.h> /**********************************************************************************************************************/ +typedef int bool; +#define true 1 +#define false 0 +/**********************************************************************************************************************/ /*function prototypes*/ +bool cleanser(char cleansee[]); + int mutator_server(FILE* log_file); #endif |