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>2001-01-08 07:02:02 +0300
committerChristopher Faylor <me@cgf.cx>2001-01-08 07:02:02 +0300
commit077ec4cb37134f2e90dd282ce9c6e496052e35e5 (patch)
treed551c0b2fc0000d7a858d98afbd1c5d27ecb8ac1 /winsup/cygwin/lib
parent10422a10ea57f189556171b00c691536512beaa0 (diff)
* pinfo.cc (codepage_init): Move function.
* environ.cc (codepage_init): To here. * exceptoins.cc (SIG_NONMASKABLE): Remove SIGCONT from consideration since it is supposed to be maskable. * signal.cc (sigaction): Ditto. * sigproc.cc (wait_sig): Ditto. * winsup.h: Eliminate global declaration of codepage_init.
Diffstat (limited to 'winsup/cygwin/lib')
-rw-r--r--winsup/cygwin/lib/dll_main.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/lib/dll_main.cc b/winsup/cygwin/lib/dll_main.cc
index 43a3c32de..e4486a3d8 100644
--- a/winsup/cygwin/lib/dll_main.cc
+++ b/winsup/cygwin/lib/dll_main.cc
@@ -1,6 +1,6 @@
/* dll_main.cc: Provide the DllMain stub that the user can override.
- Copyright 1998, 2000 Cygnus Solutions.
+ Copyright 1998, 2000, 2001 Red Hat, Inc.
This software is a copyrighted work licensed under the terms of the
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
@@ -15,13 +15,13 @@ details. */
extern "C"
BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason,
- LPVOID reserved /* Not used. */ );
+ LPVOID reserved /* Not used. */);
BOOL APIENTRY
DllMain (
HINSTANCE hInst /* Library instance handle. */ ,
DWORD reason /* Reason this function is being called. */ ,
- LPVOID reserved /* Not used. */ )
+ LPVOID reserved /* Not used. */)
{
switch (reason)
{