Change times to be relative to this experiment
[matches/MCTX3420.git] / server / log.h
index 6db52f6..eec5e53 100644 (file)
@@ -1,16 +1,11 @@
 /**
  * @file log.h
- * @purpose Declaration of functions for printing log messages and/or terminating program after a fatal error
+ * @brief Declaration of functions for printing log messages and/or terminating program after a fatal error
  */
 
 #ifndef _LOG_H
 #define _LOG_H
 
-#include <stdlib.h>
-#include <stdio.h>
-#include <stdbool.h>
-#include <stdarg.h>
-
 //To get around a 'pedantic' C99 rule that you must have at least 1 variadic arg, combine fmt into that.
 #define Log(level, ...) LogEx(level, __func__, __VA_ARGS__)
 #define Fatal(...) FatalEx(__func__, __VA_ARGS__)

UCC git Repository :: git.ucc.asn.au