Include stdlib.h, not the non-standard malloc.h header...

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2826 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet 2002-11-07 03:34:49 +00:00
parent 3473297741
commit 14e047cc0f

View File

@ -1,5 +1,5 @@
//
// "$Id: Fl_Function_Type.cxx,v 1.15.2.16.2.10 2002/11/05 06:45:40 matthiaswm Exp $"
// "$Id: Fl_Function_Type.cxx,v 1.15.2.16.2.11 2002/11/07 03:34:49 easysw Exp $"
//
// C function type code for the Fast Light Tool Kit (FLTK).
//
@ -28,7 +28,7 @@
#include <FL/fl_show_input.H>
#include "../src/flstring.h"
#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
extern int i18n_type;
extern const char* i18n_include;
@ -707,5 +707,5 @@ void Fl_Class_Type::write_code2() {
}
//
// End of "$Id: Fl_Function_Type.cxx,v 1.15.2.16.2.10 2002/11/05 06:45:40 matthiaswm Exp $".
// End of "$Id: Fl_Function_Type.cxx,v 1.15.2.16.2.11 2002/11/07 03:34:49 easysw Exp $".
//