diff options
author | Christopher Faylor <me@cgf.cx> | 2000-09-27 05:12:09 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-09-27 05:12:09 +0000 |
commit | e564846577d119c0684ccd3afa8d0103f22160e6 (patch) | |
tree | 6b990beb20010ab2de2893d5e4073f284f3afc3a /winsup/cygwin/cygheap.h | |
parent | 03de9775c4a0b867ee6095f462fad959213a0ea7 (diff) | |
download | newlib-e564846577d119c0684ccd3afa8d0103f22160e6.zip newlib-e564846577d119c0684ccd3afa8d0103f22160e6.tar.gz newlib-e564846577d119c0684ccd3afa8d0103f22160e6.tar.bz2 |
* spawn.cc (spawn_guts): Attempt to accomodate archaic windows quoting
mechanism when dealing with '\' and '"'.
Diffstat (limited to 'winsup/cygwin/cygheap.h')
-rw-r--r-- | winsup/cygwin/cygheap.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/winsup/cygwin/cygheap.h b/winsup/cygwin/cygheap.h index 6eaeee2..47493ce 100644 --- a/winsup/cygwin/cygheap.h +++ b/winsup/cygwin/cygheap.h @@ -15,8 +15,12 @@ enum cygheap_types HEAP_FHANDLER, HEAP_STR, HEAP_ARGV, - HEAP_EXEC, - HEAP_BUF + HEAP_BUF, + HEAP_1_START, + HEAP_1_STR, + HEAP_1_ARGV, + HEAP_1_BUF, + HEAP_1_EXEC }; #define CYGHEAPSIZE ((1000 * sizeof (fhandler_union)) + (2 * 65536)) @@ -34,4 +38,5 @@ void *__stdcall cmalloc (cygheap_types, DWORD); void *__stdcall crealloc (void *, DWORD); void *__stdcall ccalloc (cygheap_types, DWORD, DWORD); char *__stdcall cstrdup (const char *); +char *__stdcall cstrdup1 (const char *); } |