diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-01 16:19:32 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-04-01 16:19:32 +0000 |
| commit | c747d63cff82c0e1abcff475cd817d679d0aaf33 (patch) | |
| tree | c8c35ad25c1da69b51573f10bf197e209cfcb3c5 | |
| parent | 82f5d08fd688a2e53d168ae34c77f8374e0f5a52 (diff) | |
FLUID code that uses snprintf() needs to include src/flstring.h...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2052 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | fluid/fluid.cxx | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/fluid/fluid.cxx b/fluid/fluid.cxx index 38bb0f6aa..ba1972f60 100644 --- a/fluid/fluid.cxx +++ b/fluid/fluid.cxx @@ -1,5 +1,5 @@ // -// "$Id: fluid.cxx,v 1.15.2.13.2.12 2002/03/25 21:08:41 easysw Exp $" +// "$Id: fluid.cxx,v 1.15.2.13.2.13 2002/04/01 16:19:32 easysw Exp $" // // FLUID main entry for the Fast Light Tool Kit (FLTK). // @@ -42,13 +42,8 @@ #include <string.h> #include <ctype.h> #include <errno.h> -#include <config.h> -#if !HAVE_SNPRINTF -extern "C" { -extern int snprintf(char* str, size_t size, const char* fmt, ...); -} -#endif // !HAVE_SNPRINTF +#include "../src/flstring.h" #if defined(WIN32) && !defined(__CYGWIN__) # include <direct.h> @@ -511,5 +506,5 @@ int main(int argc,char **argv) { } // -// End of "$Id: fluid.cxx,v 1.15.2.13.2.12 2002/03/25 21:08:41 easysw Exp $". +// End of "$Id: fluid.cxx,v 1.15.2.13.2.13 2002/04/01 16:19:32 easysw Exp $". // |
