diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2021-03-20 21:39:28 +0100 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2021-03-21 00:42:28 +0100 |
| commit | 41266df7ae51f179f4a80f67a2eba896ba1fd7b2 (patch) | |
| tree | 52103dcc63cd91c58b6f599ca7595b254549b3cb /test/table.cxx | |
| parent | bd52db0b952d35ce793153e4a0c0b25f102a4395 (diff) | |
Remove unnecessary system includes from public headers
Add includes of system headers in the implementation files
where necessary.
Diffstat (limited to 'test/table.cxx')
| -rw-r--r-- | test/table.cxx | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/test/table.cxx b/test/table.cxx index 2e5f0f639..1a540ea4f 100644 --- a/test/table.cxx +++ b/test/table.cxx @@ -2,12 +2,6 @@ // exercisetablerow -- Exercise all aspects of the Fl_Table_Row widget // -#include <stdio.h> -#include <string.h> -#ifdef _WIN32 -#include <stdlib.h> // atoi -#endif /* _WIN32 */ - #include <FL/Fl.H> #include <FL/Fl_Window.H> #include <FL/Fl_Input.H> @@ -18,6 +12,10 @@ #include <FL/Fl_Table_Row.H> #include <FL/Fl_Simple_Terminal.H> +#include <stdio.h> +#include <string.h> +#include <stdlib.h> // atoi + #define TERMINAL_HEIGHT 120 // Globals |
