diff options
author | Christopher Faylor <me@cgf.cx> | 2005-05-27 18:26:19 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-05-27 18:26:19 +0000 |
commit | 1bbf1ac6a54f7277f9f29c8379176b5470e2ac17 (patch) | |
tree | 258dfd812fb1371ab706ba2daaac08665c469431 /winsup/cygwin/cygheap.h | |
parent | cba3b11fc59651662b82340583a9cd735a3916e1 (diff) | |
download | cygnal-1bbf1ac6a54f7277f9f29c8379176b5470e2ac17.tar.gz cygnal-1bbf1ac6a54f7277f9f29c8379176b5470e2ac17.tar.bz2 cygnal-1bbf1ac6a54f7277f9f29c8379176b5470e2ac17.zip |
* cygheap.h: Reference _cygheap_start via .cygheap section.
* environ.cc: Fix force_into_environment typo throughout.
(spenvs): Export CYGWIN_DEBUG if DEBUGGING.
Diffstat (limited to 'winsup/cygwin/cygheap.h')
-rw-r--r-- | winsup/cygwin/cygheap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/cygheap.h b/winsup/cygwin/cygheap.h index d2be12047..4575572ba 100644 --- a/winsup/cygwin/cygheap.h +++ b/winsup/cygwin/cygheap.h @@ -428,5 +428,5 @@ char *__stdcall cstrdup (const char *) __attribute__ ((regparm(1))); char *__stdcall cstrdup1 (const char *) __attribute__ ((regparm(1))); void __stdcall cfree_and_set (char *&, char * = NULL) __attribute__ ((regparm(2))); void __stdcall cygheap_init (); -extern DWORD _cygheap_start; +extern DWORD _cygheap_start __attribute__((section(".cygheap"))); } |