9
0
Fork 0

vsprintf: Only define PAGE_SIZE if not already defined

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2009-12-18 12:25:51 +01:00
parent 4c96c0e1a4
commit 9ff9388632
1 changed files with 2 additions and 0 deletions

View File

@ -206,7 +206,9 @@ static char *number(char *buf, char *end, unsigned long long num, int base, int
return buf;
}
#ifndef PAGE_SIZE
#define PAGE_SIZE 4096
#endif
static char *string(char *buf, char *end, char *s, int field_width, int precision, int flags)
{