diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1999-03-04 13:39:41 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1999-03-04 13:39:41 +0000 |
| commit | 70dd4ee71e12da8e699344f51a41a422e5c12e0b (patch) | |
| tree | 2d9bdd3e7934186c3048549a988a8c516c0383a5 | |
| parent | c599778795d0ba9714bcfd3cbb7971627ebd31ab (diff) | |
Missing "int" on main()...
git-svn-id: file:///fltk/svn/fltk/trunk@354 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | test/CubeMain.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/CubeMain.cxx b/test/CubeMain.cxx index 72a7d25ed..135ba9a41 100644 --- a/test/CubeMain.cxx +++ b/test/CubeMain.cxx @@ -1,5 +1,5 @@ // -// "$Id: CubeMain.cxx,v 1.1 1999/02/22 21:33:53 mike Exp $" +// "$Id: CubeMain.cxx,v 1.2 1999/03/04 13:39:41 mike Exp $" // // CubeView class definitions for the Fast Light Tool Kit (FLTK). // @@ -27,6 +27,7 @@ #include <FL/Fl.H> #include "CubeViewUI.h" +int main(int argc, char **argv) { CubeViewUI *cvui=new CubeViewUI; @@ -42,5 +43,5 @@ main(int argc, char **argv) { // -// End of "$Id: CubeMain.cxx,v 1.1 1999/02/22 21:33:53 mike Exp $". +// End of "$Id: CubeMain.cxx,v 1.2 1999/03/04 13:39:41 mike Exp $". // |
