summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/fl_ask.cxx12
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 $".
//