import of readlilne 5.1
[deliverable/binutils-gdb.git] / readline / ansi_stdlib.h
index a720cb9bcbcd94f567130146a6009b814c5126df..db13cd234bdf216accbe666718f5e63dab4001cc 100644 (file)
 
 /* String conversion functions. */
 extern int atoi ();
-extern long int atol ();
+
+extern double atof ();
+extern double strtod ();
 
 /* Memory allocation functions. */
-extern char *malloc ();
-extern char *realloc ();
+/* Generic pointer type. */
+#ifndef PTR_T
+
+#if defined (__STDC__)
+#  define PTR_T        void *
+#else
+#  define PTR_T char *
+#endif
+
+#endif /* PTR_T */
+
+extern PTR_T malloc ();
+extern PTR_T realloc ();
 extern void free ();
 
 /* Other miscellaneous functions. */
This page took 0.023189 seconds and 4 git commands to generate.