Commit 9f3fd25986ba4280dc4d6f9f09a32f7db07618d3

henry 2002-11-28T09:41:56

Changed cstdlib to stdlib.h for irix

diff --git a/include/FTCharToGlyphIndexMap.h b/include/FTCharToGlyphIndexMap.h
index 8dbb82e..bd31c67 100644
--- a/include/FTCharToGlyphIndexMap.h
+++ b/include/FTCharToGlyphIndexMap.h
@@ -1,6 +1,10 @@
 #ifndef    __FTCharToGlyphIndexMap__
 #define    __FTCharToGlyphIndexMap__
 
+#include <stdlib.h>
+
+#include "FTGL.h"
+
 /**
  * Provides a non-STL alternative to the STL map<unsigned long, unsigned long>
  * which maps character codes to glyph indices inside FTCharmap.
@@ -20,11 +24,6 @@
  *     the special value IndexNotFound (= -1) can be used to specify that the 
  *     glyph index has not been stored yet.
  */
-
-#include <cstdlib>
-
-#include "FTGL.h"
-
 class FTGL_EXPORT FTCharToGlyphIndexMap
 {
     public: