* libc/strptime.c: Remove misleading comment.

This commit is contained in:
Corinna Vinschen
2011-04-01 08:37:10 +00:00
parent e17c77459e
commit 37f4458299
2 changed files with 4 additions and 4 deletions

View File

@ -54,10 +54,6 @@ __weak_alias(strptime,_strptime)
#define _ctloc(x) (_CurrentTimeLocale->x)
/*
* We do not implement alternate representations. However, we always
* check whether a given modifier is allowed for a certain conversion.
*/
#define ALT_E 0x01
#define ALT_O 0x02
#define LEGAL_ALT(x) { if (alt_format & ~(x)) return NULL; }