summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2017-07-12 21:49:19 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2017-07-12 21:49:19 +0000
commitb7851fac8e2450f72a24b52b87dab89727778606 (patch)
tree03e431040ce648bd9f2b31352cdbfec9252bbd5f
parentf84b9040f7486a445a067736d4e4ddc4c6a8a269 (diff)
Add missing #include in fltk-versions example program.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12312 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--examples/fltk-versions.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/fltk-versions.cxx b/examples/fltk-versions.cxx
index 4e82ae487..c68353990 100644
--- a/examples/fltk-versions.cxx
+++ b/examples/fltk-versions.cxx
@@ -3,7 +3,7 @@
//
// Library version test program for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2015 by Bill Spitzak and others.
+// Copyright 1998-2017 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
@@ -21,6 +21,8 @@
#include <FL/Fl_Box.H>
#include <FL/fl_ask.H>
+#include <stdio.h>
+
static char version[8][80] = { "","","","","","","","" };
int main(int argc, char **argv) {