| Date: Tue, 28 Feb 2006 20:12:18 +0000
cannot say isnumber
Diffstat:
M src/cmd/upas/nfs/a.h | 14 +++++++++-----
M src/cmd/upas/nfs/fs.c | 2 +-
2 files changed, 10 insertions(+), 6 deletions(-)
--- |
| t@@ -22,11 +22,6 @@ void mailthread(void (*fn)(void*), void*);
void warn(char*, ...);
-#define esmprint smprint
-#define emalloc(n) mallocz(n, 1)
-#define erealloc realloc
-#define estrdup strdup
-
enum
{
NoEncoding,
t@@ -40,3 +35,12 @@ char* tcs(char*, char*);
char* unrfc2047(char*);
extern Imap *imap;
+
+#undef isnumber
+#define isnumber upas_isnumber
+
+#define esmprint smprint
+#define emalloc(n) mallocz(n, 1)
+#define erealloc realloc
+#define estrdup strdup
+ |