switch comments from // format to /* */ format.

This commit is contained in:
Ron Koenderink 2004-12-21 02:20:26 +00:00
parent 976749e5c0
commit 99ad950d9c
2 changed files with 12 additions and 8 deletions

View file

@ -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 */