summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-03-04 18:45:31 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-03-04 18:45:31 +0000
commitac66e4d72ea3cbece7e26b150eb21b5964075ad6 (patch)
tree7621839613e3a3f9942ae3becbb650fae7b64ddb
parent75964566a2f48922a48df61740b0a6e2e7272af8 (diff)
Got rid of malloc.h include - should be using stdlib.h anyways...
git-svn-id: file:///fltk/svn/fltk/trunk@365 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--fluid/Fluid_Image.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/fluid/Fluid_Image.cxx b/fluid/Fluid_Image.cxx
index 1bcc0d743..7c1686c99 100644
--- a/fluid/Fluid_Image.cxx
+++ b/fluid/Fluid_Image.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fluid_Image.cxx,v 1.6 1999/01/07 19:17:12 mike Exp $"
+// "$Id: Fluid_Image.cxx,v 1.7 1999/03/04 18:45:31 mike Exp $"
//
// Pixmap label support for the Fast Light Tool Kit (FLTK).
//
@@ -31,8 +31,7 @@
#include <stdio.h>
#include <errno.h>
#include <ctype.h>
-#include <malloc.h>
-#include <stdlib.h> // needed for DEC's Alpha cxx ?
+#include <stdlib.h>
#include <FL/filename.H>
extern void goto_source_dir(); // in fluid.C
@@ -406,5 +405,5 @@ Fluid_Image *ui_find_image(const char *oldname) {
}
//
-// End of "$Id: Fluid_Image.cxx,v 1.6 1999/01/07 19:17:12 mike Exp $".
+// End of "$Id: Fluid_Image.cxx,v 1.7 1999/03/04 18:45:31 mike Exp $".
//