aboutsummaryrefslogtreecommitdiff
path: root/src/common/log.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2004-04-03 04:05:12 +0000
committerNick Mathewson <nickm@torproject.org>2004-04-03 04:05:12 +0000
commitb3c2b62a14cdc6511b148dc048463674453b52fd (patch)
treed6eae937e0cd1cd217dae34f1ccdcfc7557558d8 /src/common/log.c
parentcb07e2ad2762cb2d7a4800b4b140459a0822e531 (diff)
downloadtor-b3c2b62a14cdc6511b148dc048463674453b52fd.tar
tor-b3c2b62a14cdc6511b148dc048463674453b52fd.tar.gz
Make "common" no longer depend on or.h
svn:r1466
Diffstat (limited to 'src/common/log.c')
-rw-r--r--src/common/log.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/common/log.c b/src/common/log.c
index 4245fca5c..5e52cfff4 100644
--- a/src/common/log.c
+++ b/src/common/log.c
@@ -2,8 +2,13 @@
/* See LICENSE for licensing information */
/* $Id$ */
-#include "../or/or.h"
#include <stdarg.h>
+#include <assert.h>
+#include <stdlib.h>
+#include "orconfig.h"
+#include "./util.h"
+#include "./log.h"
+
#ifdef MS_WINDOWS
#define vsnprintf _vsnprintf