diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-10-11 07:35:02 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-10-11 07:35:02 +0000 |
commit | faf70584f2eaa0cafb8f40a411bcbfc61264ffca (patch) | |
tree | aecc3ed74fa0c03d46b0b72f5369bb6c9787c799 /epan/filesystem.c | |
parent | 54ecbe2d4e4d1eaf2d1e8ae0789d4378f3b9c874 (diff) | |
download | wireshark-faf70584f2eaa0cafb8f40a411bcbfc61264ffca.tar.gz wireshark-faf70584f2eaa0cafb8f40a411bcbfc61264ffca.tar.bz2 wireshark-faf70584f2eaa0cafb8f40a411bcbfc61264ffca.zip |
Fix it to build on Windows.
svn path=/trunk/; revision=2488
Diffstat (limited to 'epan/filesystem.c')
-rw-r--r-- | epan/filesystem.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/filesystem.c b/epan/filesystem.c index bd89677f90..54dc8ffe48 100644 --- a/epan/filesystem.c +++ b/epan/filesystem.c @@ -1,7 +1,7 @@ /* filesystem.c * Filesystem utility routines * - * $Id: filesystem.c,v 1.1 2000/09/28 03:16:16 gram Exp $ + * $Id: filesystem.c,v 1.2 2000/10/11 07:35:01 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -28,6 +28,7 @@ #endif #include <stdlib.h> +#include <string.h> #include <glib.h> #ifdef HAVE_UNISTD_H @@ -39,6 +40,7 @@ #endif #include "filesystem.h" +#include "util.h" const char* get_home_dir(void) |