diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-11-12 14:16:57 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-11-12 14:16:57 +0000 |
| commit | 35bc9f0bc588fb30d31c03424aca415985c38fad (patch) | |
| tree | 98eaa1787f6f12ee428d2f79b0aaad738646e3c3 /src/fl_ask.cxx | |
| parent | 12ce7cba98a5142c27afa624dc988b2717f5eecd (diff) | |
Fix from Paul Sydney - missing #include <config.h> in fl_ask.C...
git-svn-id: file:///fltk/svn/fltk/trunk@87 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_ask.cxx')
| -rw-r--r-- | src/fl_ask.cxx | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/fl_ask.cxx b/src/fl_ask.cxx index f2c4ecfb3..81d6b7b1d 100644 --- a/src/fl_ask.cxx +++ b/src/fl_ask.cxx @@ -1,5 +1,5 @@ // -// "$Id: fl_ask.cxx,v 1.4 1998/11/05 16:04:51 mike Exp $" +// "$Id: fl_ask.cxx,v 1.5 1998/11/12 14:16:57 mike Exp $" // // Standard dialog functions for the Fast Light Tool Kit (FLTK). // @@ -28,6 +28,11 @@ // mostly. In most cases it is easier to get a multi-line message // by putting newlines in the message. +#include <stdio.h> +#include <stdarg.h> +#include <string.h> +#include <config.h> + #include <FL/Fl.H> #include <FL/fl_ask.H> @@ -70,9 +75,6 @@ static Fl_Window *makeform() { return w; } -#include <stdio.h> -#include <stdarg.h> -#include <string.h> #if !HAVE_VSNPRINTF extern "C" { int vsnprintf(char* str, size_t size, const char* fmt, va_list ap); @@ -194,5 +196,5 @@ const char *fl_password(const char *fmt, const char *defstr, ...) { } // -// End of "$Id: fl_ask.cxx,v 1.4 1998/11/05 16:04:51 mike Exp $". +// End of "$Id: fl_ask.cxx,v 1.5 1998/11/12 14:16:57 mike Exp $". // |
