cannot say isnumber
This commit is contained in:
parent
23fdde49f1
commit
c772232802
2 changed files with 10 additions and 6 deletions
|
|
@ -22,11 +22,6 @@ void mailthread(void (*fn)(void*), void*);
|
||||||
|
|
||||||
void warn(char*, ...);
|
void warn(char*, ...);
|
||||||
|
|
||||||
#define esmprint smprint
|
|
||||||
#define emalloc(n) mallocz(n, 1)
|
|
||||||
#define erealloc realloc
|
|
||||||
#define estrdup strdup
|
|
||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
NoEncoding,
|
NoEncoding,
|
||||||
|
|
@ -40,3 +35,12 @@ char* tcs(char*, char*);
|
||||||
char* unrfc2047(char*);
|
char* unrfc2047(char*);
|
||||||
|
|
||||||
extern Imap *imap;
|
extern Imap *imap;
|
||||||
|
|
||||||
|
#undef isnumber
|
||||||
|
#define isnumber upas_isnumber
|
||||||
|
|
||||||
|
#define esmprint smprint
|
||||||
|
#define emalloc(n) mallocz(n, 1)
|
||||||
|
#define erealloc realloc
|
||||||
|
#define estrdup strdup
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -222,7 +222,7 @@ fsattach(Req *r)
|
||||||
respond(r, nil);
|
respond(r, nil);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
static int
|
||||||
isnumber(char *s)
|
isnumber(char *s)
|
||||||
{
|
{
|
||||||
int n;
|
int n;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue