it would have to take circular links and sharing into account. */
#include "allobjects.h"
+#include "modsupport.h"
#include "longintrepr.h"
#include "compile.h"
#include "marshal.h"
n = getdictsize(v);
for (i = 0; i < n; i++) {
object *key, *val;
- extern object *getdict2key();
key = getdict2key(v, (int)i);
if (key != NULL) {
val = dict2lookup(v, key); /* Can't be NULL */
case TYPE_FLOAT:
{
- extern double strtod();
+ extern double strtod PROTO((const char *, char **));
char buf[256];
double res;
char *end;