aboutsummaryrefslogtreecommitdiff
path: root/src/common/log.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2004-11-14 17:21:32 +0000
committerNick Mathewson <nickm@torproject.org>2004-11-14 17:21:32 +0000
commit783bbcf471622fccc487267db0377adb04d75461 (patch)
treece46433ab967716a60b15a72a9bd4b508d3e7383 /src/common/log.c
parent846f71dccabb7b5385e6498985adde5abad4d4b4 (diff)
downloadtor-783bbcf471622fccc487267db0377adb04d75461.tar
tor-783bbcf471622fccc487267db0377adb04d75461.tar.gz
Fix "implicit declaration of ftello" warning: add AC_FUNC_FSEEKO in configure.in and always include orconfig.h before anything else
svn:r2854
Diffstat (limited to 'src/common/log.c')
-rw-r--r--src/common/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/log.c b/src/common/log.c
index 49571f64f..500cfa1c1 100644
--- a/src/common/log.c
+++ b/src/common/log.c
@@ -8,11 +8,11 @@
* \brief Functions to send messages to log files or the console.
*/
+#include "orconfig.h"
#include <stdarg.h>
#include <assert.h>
#include <stdlib.h>
#include <string.h>
-#include "orconfig.h"
#include "./util.h"
#include "./log.h"