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-03-03 06:56:34 +0300
committerChristopher Faylor <me@cgf.cx>2001-03-03 06:56:34 +0300
commit0312ede431278fb8a0aa6db9ae201d928d3b0055 (patch)
treee81f158ae800155fdd709838ad4ed327289ebb35 /winsup/cygwin/dcrt0.cc
parent19ca46d5fbe807cd81afe2dda33bbd669db91e09 (diff)
*** empty log message ***
Diffstat (limited to 'winsup/cygwin/dcrt0.cc')
-rw-r--r--winsup/cygwin/dcrt0.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/cygwin/dcrt0.cc b/winsup/cygwin/dcrt0.cc
index 60e990c8b..7206fa116 100644
--- a/winsup/cygwin/dcrt0.cc
+++ b/winsup/cygwin/dcrt0.cc
@@ -38,7 +38,7 @@ details. */
#define MAX_AT_FILE_LEVEL 10
-#define PREMAIN_LEN (sizeof(user_data->premain) / sizeof (user_data->premain[0]))
+#define PREMAIN_LEN (sizeof (user_data->premain) / sizeof (user_data->premain[0]))
HANDLE NO_COPY hMainProc = NULL;
HANDLE NO_COPY hMainThread = NULL;
@@ -356,7 +356,7 @@ globify (char *word, char **&argv, int &argc, int &argvlen)
int n = 0;
char *p, *s;
int dos_spec = isdrive (word);
- if (!dos_spec && isquote(*word) && word[1] && word[2])
+ if (!dos_spec && isquote (*word) && word[1] && word[2])
dos_spec = isdrive (word + 1);
/* We'll need more space if there are quoting characters in
@@ -601,7 +601,7 @@ alloc_stack (child_info_fork *ci)
api_fatal ("fork: couldn't get stack info, %E");
if (sm.AllocationBase != ci->stacktop)
- alloc_stack_hard_way (ci, b + sizeof(b) - 1);
+ alloc_stack_hard_way (ci, b + sizeof (b) - 1);
else
ci->stacksize = 0;
}
@@ -872,7 +872,7 @@ _dll_crt0 ()
if (GetEnvironmentVariable ("CYGWIN_SLEEP", buf, sizeof (buf)))
{
small_printf ("Sleeping %d, pid %u\n", atoi (buf), GetCurrentProcessId ());
- Sleep (atoi(buf));
+ Sleep (atoi (buf));
}
#endif