diff options
author | Christopher Faylor <me@cgf.cx> | 2006-02-15 22:11:13 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2006-02-15 22:11:13 +0000 |
commit | 5e8b96517cb213e9cffb20c9e6be08a25de7f7ce (patch) | |
tree | a843ae6c76b38a48cf8c51f2515e5a043e5616c4 /winsup/cygwin/exec.cc | |
parent | 96a4362c92519fe9e8c021624ee74e1338110970 (diff) | |
download | cygnal-5e8b96517cb213e9cffb20c9e6be08a25de7f7ce.tar.gz cygnal-5e8b96517cb213e9cffb20c9e6be08a25de7f7ce.tar.bz2 cygnal-5e8b96517cb213e9cffb20c9e6be08a25de7f7ce.zip |
minor comment restructuring
Diffstat (limited to 'winsup/cygwin/exec.cc')
-rw-r--r-- | winsup/cygwin/exec.cc | 8 |
1 files changed, 3 insertions, 5 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) |