New timing infrastructure. There's a new function schedule_timer()
[u/mdw/putty] / misc.h
diff --git a/misc.h b/misc.h
index 7d0ee4d..cd144b5 100644 (file)
--- a/misc.h
+++ b/misc.h
@@ -3,6 +3,7 @@
 
 #include "puttymem.h"
 
+#include <stdio.h>                    /* for FILE * */
 #include <stdarg.h>                   /* for va_list */
 
 #ifndef FALSE
@@ -20,6 +21,8 @@ char *dupcat(const char *s1, ...);
 char *dupprintf(const char *fmt, ...);
 char *dupvprintf(const char *fmt, va_list ap);
 
+char *fgetline(FILE *fp);
+
 void base64_encode_atom(unsigned char *data, int n, char *out);
 
 struct bufchain_granule;