switch comments from // format to /* */ format.
This commit is contained in:
parent
976749e5c0
commit
99ad950d9c
2 changed files with 12 additions and 8 deletions
|
@ -200,11 +200,15 @@ static char *posixly_correct;
|
|||
# define my_index strchr
|
||||
#else
|
||||
|
||||
//# if HAVE_STRING_H
|
||||
/*
|
||||
# if HAVE_STRING_H
|
||||
*/
|
||||
# include <string.h>
|
||||
//# else
|
||||
//# include <strings.h>
|
||||
//# endif
|
||||
/*
|
||||
# else
|
||||
# include <strings.h>
|
||||
# endif
|
||||
*/
|
||||
|
||||
/* Avoid depending on library functions or files
|
||||
whose names are inconsistent. */
|
||||
|
@ -982,4 +986,4 @@ getopt (argc, argv, optstring)
|
|||
}
|
||||
|
||||
#endif /* Not ELIDE_CODE. */
|
||||
#endif // _WIN32
|
||||
#endif /* _WIN32 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue