diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-08-27 23:10:04 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-08-27 23:10:04 +0200 |
| commit | 7aea8d20ec8816759c8439fc39d90579fc37e18b (patch) | |
| tree | f59d354ea1ad128929e0e810da0fa78bab00537b /lib/logger/log.h | |
| parent | d680d4c641c085e7a31d19fe2d01f528e96d2ced (diff) | |
cleanup and switched logging to vesa mode console!
Diffstat (limited to 'lib/logger/log.h')
| -rw-r--r-- | lib/logger/log.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/logger/log.h b/lib/logger/log.h new file mode 100644 index 0000000..bcc1bc7 --- /dev/null +++ b/lib/logger/log.h @@ -0,0 +1,12 @@ +#ifndef FOOLOS_LOG_H +#define FOOLOS_LOGL_H + + +#define FOOLOS_LOG_INFO 1 + +#include <stdarg.h> + +void log(char *module_name, int prio, char *format_string, ...); + +#endif + |
