summaryrefslogtreecommitdiff
path: root/src/fl_ask.cxx
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2021-03-20 21:39:28 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2021-03-21 00:42:28 +0100
commit41266df7ae51f179f4a80f67a2eba896ba1fd7b2 (patch)
tree52103dcc63cd91c58b6f599ca7595b254549b3cb /src/fl_ask.cxx
parentbd52db0b952d35ce793153e4a0c0b25f102a4395 (diff)
Remove unnecessary system includes from public headers
Add includes of system headers in the implementation files where necessary.
Diffstat (limited to 'src/fl_ask.cxx')
-rw-r--r--src/fl_ask.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/fl_ask.cxx b/src/fl_ask.cxx
index f711a9f1d..c9255f14e 100644
--- a/src/fl_ask.cxx
+++ b/src/fl_ask.cxx
@@ -1,7 +1,7 @@
//
// Standard dialog functions for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2020 by Bill Spitzak and others.
+// Copyright 1998-2021 by Bill Spitzak and others.
//
// This library is free software. Distribution and use rights are outlined in
// the file "COPYING" which should have been included with this file. If this
@@ -24,14 +24,10 @@
// 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 "flstring.h"
-
#include <FL/Fl.H>
#include <FL/fl_string.h>
-
#include <FL/fl_ask.H>
+#include "flstring.h"
#include <FL/Fl_Box.H>
#include <FL/Fl_Button.H>
@@ -43,6 +39,10 @@
#include "Fl_Screen_Driver.H"
#include <FL/fl_draw.H>
+#include <stdio.h>
+#include <stdarg.h>
+#include <stdlib.h>
+
static Fl_Window *message_form;
static Fl_Box *message;
static Fl_Box *icon;