diff options
author | Aaron Brashears <aaronb@lindenlab.com> | 2007-10-04 16:31:48 +0000 |
---|---|---|
committer | Aaron Brashears <aaronb@lindenlab.com> | 2007-10-04 16:31:48 +0000 |
commit | 4942a7b77917f9a163453ecdd040993965672cc0 (patch) | |
tree | 3dd01f5e182d2eea2e34528cebe749d948a477fc /indra/llcommon/llfile.h | |
parent | 9fc7049151a16e3722c6ce90899e3c7b63161615 (diff) |
Result of svn merge -r70873:71086 svn+ssh://svn/svn/linden/branches/enable-exceptions into release.
Diffstat (limited to 'indra/llcommon/llfile.h')
-rw-r--r-- | indra/llcommon/llfile.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/indra/llcommon/llfile.h b/indra/llcommon/llfile.h index 605918cd29..77bd20e274 100644 --- a/indra/llcommon/llfile.h +++ b/indra/llcommon/llfile.h @@ -17,12 +17,6 @@ * Attempts to mostly mirror the POSIX style IO functions. */ -#include <string> -#include <stdio.h> -#include <sys/stat.h> -#include <fstream> -#include "stdtypes.h" - typedef FILE LLFILE; #ifdef LL_WINDOWS @@ -36,6 +30,7 @@ typedef FILE LLFILE; // windows version of stat function and stat data structure are called _stat typedef struct _stat llstat; #else +#include <sys/stat.h> typedef struct stat llstat; #endif |