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:
authorThomas Fitzsimmons <fitzsim@redhat.com>2002-04-30 22:23:40 +0400
committerThomas Fitzsimmons <fitzsim@redhat.com>2002-04-30 22:23:40 +0400
commitbfc27bae1acb55886146a7c67f85cf752b5d532c (patch)
treeb50cd33ffa95c856e6d7d1e6bc506acc643e8f7e /newlib/libc/stdlib
parent1bf83a86f6487859997dd2161a408df6be9f032a (diff)
* Various formatting and whitespace changes.
Diffstat (limited to 'newlib/libc/stdlib')
-rw-r--r--newlib/libc/stdlib/getenv_r.c2
-rw-r--r--newlib/libc/stdlib/putenv_r.c2
-rw-r--r--newlib/libc/stdlib/stdlib.tex2
-rw-r--r--newlib/libc/stdlib/strtoll.c8
4 files changed, 7 insertions, 7 deletions
diff --git a/newlib/libc/stdlib/getenv_r.c b/newlib/libc/stdlib/getenv_r.c
index 2cc48cfd7..85d250b79 100644
--- a/newlib/libc/stdlib/getenv_r.c
+++ b/newlib/libc/stdlib/getenv_r.c
@@ -35,7 +35,7 @@ variables vary from one system to another.
*/
/* This file may have been modified by DJ Delorie (Jan 1991). If so,
-** these modifications are Copyright (C) 1991 DJ Delorie
+** these modifications are Copyright (C) 1991 DJ Delorie.
*/
/*
diff --git a/newlib/libc/stdlib/putenv_r.c b/newlib/libc/stdlib/putenv_r.c
index 7c2686f92..a03f3b007 100644
--- a/newlib/libc/stdlib/putenv_r.c
+++ b/newlib/libc/stdlib/putenv_r.c
@@ -1,5 +1,5 @@
/* This file may have been modified by DJ Delorie (Jan 1991). If so,
-** these modifications are Copyright (C) 1991 DJ Delorie
+** these modifications are Copyright (C) 1991 DJ Delorie.
*/
/*-
diff --git a/newlib/libc/stdlib/stdlib.tex b/newlib/libc/stdlib/stdlib.tex
index fc1643603..7baddc330 100644
--- a/newlib/libc/stdlib/stdlib.tex
+++ b/newlib/libc/stdlib/stdlib.tex
@@ -30,7 +30,7 @@ The corresponding declarations are in the header file @file{stdlib.h}.
* mbtowc:: Minimal multibyte to wide character converter
* qsort:: Sort an array
* rand:: Pseudo-random numbers
-* rand48:: Uniformaly distributed pseudo-random numbers
+* rand48:: Uniformly distributed pseudo-random numbers
* strtod:: String to double or float
* strtol:: String to long
* strtoul:: String to unsigned long
diff --git a/newlib/libc/stdlib/strtoll.c b/newlib/libc/stdlib/strtoll.c
index fdba09f24..3ee9e7592 100644
--- a/newlib/libc/stdlib/strtoll.c
+++ b/newlib/libc/stdlib/strtoll.c
@@ -16,14 +16,14 @@ ANSI_SYNOPSIS
TRAD_SYNOPSIS
#include <stdlib.h>
- long strtoll (<[s]>, <[ptr]>, <[base]>)
- char *<[s]>;
+ long long strtoll (<[s]>, <[ptr]>, <[base]>)
+ const char *<[s]>;
char **<[ptr]>;
int <[base]>;
- long _strtoll_r (<[reent]>, <[s]>, <[ptr]>, <[base]>)
+ long long _strtoll_r (<[reent]>, <[s]>, <[ptr]>, <[base]>)
char *<[reent]>;
- char *<[s]>;
+ const char *<[s]>;
char **<[ptr]>;
int <[base]>;