Fix "implicit declaration of ftello" warning: add AC_FUNC_FSEEKO in configure.in and always include orconfig.h before anything else

svn:r2854
This commit is contained in:
Nick Mathewson
2004-11-14 17:21:32 +00:00
parent 846f71dcca
commit 783bbcf471
3 changed files with 7 additions and 8 deletions
+1 -1
View File
@@ -8,10 +8,10 @@
* \brief Implementation of a simple AES counter mode.
**/
#include "orconfig.h"
#include <assert.h>
#include <stdlib.h>
#include <string.h>
#include "orconfig.h"
#include "aes.h"
#include "util.h"
+1 -1
View File
@@ -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"