Changeset 609 for branches/GNU/src/binutils/libiberty/getopt.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/libiberty/getopt.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 84 84 /* This is for other GNU distributions with internationalized messages. 85 85 When compiling libc, the _ macro is predefined. */ 86 # if def HAVE_LIBINTL_H86 # if (HAVE_LIBINTL_H && ENABLE_NLS) || defined _LIBC 87 87 # include <libintl.h> 88 88 # define _(msgid) gettext (msgid) … … 337 337 else 338 338 { 339 memset ( __mempcpy (new_str, __getopt_nonoption_flags,340 339 memset (mempcpy (new_str, __getopt_nonoption_flags, 340 nonoption_flags_max_len), 341 341 '\0', top + 1 - nonoption_flags_max_len); 342 342 nonoption_flags_max_len = top + 1; … … 448 448 nonoption_flags_max_len = -1; 449 449 else 450 memset ( __mempcpy (__getopt_nonoption_flags, orig_str, len),450 memset (mempcpy (__getopt_nonoption_flags, orig_str, len), 451 451 '\0', nonoption_flags_max_len - len); 452 452 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.