diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2011-01-19 09:41:54 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2011-01-19 09:41:54 +0000 |
commit | 17133a85de3326ec7c63f800581984392ddd276f (patch) | |
tree | 0c95de462a564355495f3c5b376f16847cc253d5 /winsup/cygwin/string.h | |
parent | 808aae3d13971fd7ccb474caff9bd89a9569795b (diff) | |
download | cygnal-17133a85de3326ec7c63f800581984392ddd276f.tar.gz cygnal-17133a85de3326ec7c63f800581984392ddd276f.tar.bz2 cygnal-17133a85de3326ec7c63f800581984392ddd276f.zip |
* exec.cc (strccpy): Move function from here...
* strfuncs.cc (strccpy): ...to here.
* string.h (strccpy): Declare.
* winsup.h (strccpy): Drop declaration.
Diffstat (limited to 'winsup/cygwin/string.h')
-rw-r--r-- | winsup/cygwin/string.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/winsup/cygwin/string.h b/winsup/cygwin/string.h index b02fadb8f..318256032 100644 --- a/winsup/cygwin/string.h +++ b/winsup/cygwin/string.h @@ -1,6 +1,6 @@ /* string.h: Extra string defs - Copyright 2001, 2007, 2008 Red Hat, Inc. + Copyright 2001, 2007, 2008, 2011 Red Hat, Inc. This file is part of Cygwin. @@ -119,6 +119,8 @@ char * __stdcall cygwin_strupr (char *); #endif /* __INSIDE_CYGWIN__ */ +char *__stdcall strccpy (char *s1, const char **s2, char c); + #ifdef __cplusplus } #endif |