aboutsummaryrefslogtreecommitdiffstats
path: root/lib/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/log.h')
-rw-r--r--lib/log.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/log.h b/lib/log.h
new file mode 100644
index 0000000..b0a2aa3
--- /dev/null
+++ b/lib/log.h
@@ -0,0 +1,18 @@
+#ifndef _log_h_
+#define _log_h_
+
+#include <ostream.h>
+#include <syslog.h>
+
+class logbuf : public streambuf {
+ public:
+ logbuf(int);
+ int overflow(int c = EOF);
+ private:
+ char *ptr;
+ int len;
+ int level;
+ char buf[1024];
+};
+
+#endif