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
This commit is contained in:
Michael R Sweet 1998-11-12 14:16:57 +00:00
parent 12ce7cba98
commit 35bc9f0bc5

View File

@ -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). // 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 // mostly. In most cases it is easier to get a multi-line message
// by putting newlines in the 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.H>
#include <FL/fl_ask.H> #include <FL/fl_ask.H>
@ -70,9 +75,6 @@ static Fl_Window *makeform() {
return w; return w;
} }
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#if !HAVE_VSNPRINTF #if !HAVE_VSNPRINTF
extern "C" { extern "C" {
int vsnprintf(char* str, size_t size, const char* fmt, va_list ap); 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 $".
// //