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:
authorChristopher Faylor <me@cgf.cx>2006-02-16 01:11:13 +0300
committerChristopher Faylor <me@cgf.cx>2006-02-16 01:11:13 +0300
commit5e8b96517cb213e9cffb20c9e6be08a25de7f7ce (patch)
treea843ae6c76b38a48cf8c51f2515e5a043e5616c4
parent96a4362c92519fe9e8c021624ee74e1338110970 (diff)
minor comment restructuring
-rw-r--r--winsup/cygwin/exec.cc8
-rw-r--r--winsup/cygwin/spawn.cc4
2 files changed, 5 insertions, 7 deletions
diff --git a/winsup/cygwin/exec.cc b/winsup/cygwin/exec.cc
index 2276545db..1176307f6 100644
--- a/winsup/cygwin/exec.cc
+++ b/winsup/cygwin/exec.cc
@@ -69,11 +69,9 @@ sexecve_is_bad ()
return 0;
}
-/*
- * Copy string, until c or <nul> is encountered.
- * NUL-terminate the destination string (s1).
- * Return pointer to terminating byte in dst string.
- */
+/* Copy string, until c or <nul> is encountered.
+ NUL-terminate the destination string (s1).
+ Return pointer to terminating byte in dst string. */
char * __stdcall
strccpy (char *s1, const char **s2, char c)
diff --git a/winsup/cygwin/spawn.cc b/winsup/cygwin/spawn.cc
index f5df7ccd3..5817a1dfe 100644
--- a/winsup/cygwin/spawn.cc
+++ b/winsup/cygwin/spawn.cc
@@ -153,8 +153,8 @@ find_exec (const char *name, path_conv& buf, const char *mywinenv,
posix_path = winpath->get_posix () - 1;
debug_printf ("%s%s", mywinenv, path);
- /* Iterate over the specified path, looking for the file with and
- without executable extensions. */
+ /* Iterate over the specified path, looking for the file with and without
+ executable extensions. */
do
{
posix_path++;