Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2011-04-01 12:37:10 +0400
committerCorinna Vinschen <corinna@vinschen.de>2011-04-01 12:37:10 +0400
commit37f44582995d79cf2cd5167db6c40d806a00d110 (patch)
tree27a077db6f8b5c3d9efe68c428122a3a7752988e /winsup/cygwin/libc
parente17c77459ec84c730a3dd17cfdb5311b51c7bbb6 (diff)
* libc/strptime.c: Remove misleading comment.
Diffstat (limited to 'winsup/cygwin/libc')
-rw-r--r--winsup/cygwin/libc/strptime.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/winsup/cygwin/libc/strptime.cc b/winsup/cygwin/libc/strptime.cc
index 08d4c5f56..833b6290f 100644
--- a/winsup/cygwin/libc/strptime.cc
+++ b/winsup/cygwin/libc/strptime.cc
@@ -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; }