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
This commit is contained in:
Michael R Sweet 1999-03-04 18:45:31 +00:00
parent 75964566a2
commit ac66e4d72e

View File

@ -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 $".
//