aboutsummaryrefslogtreecommitdiff
path: root/coreutils/expr.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-04-14 17:51:38 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2004-04-14 17:51:38 +0000
commit91d2370c2c6a5a6a8214647730701d8e85e62441 (patch)
tree101230a8bd16a03319acc4b9b5fb33c33fb58672 /coreutils/expr.c
parent599dbdd2f8da81fb29fd52efab56d9b8a299ff9b (diff)
downloadbusybox-w32-91d2370c2c6a5a6a8214647730701d8e85e62441.tar.gz
busybox-w32-91d2370c2c6a5a6a8214647730701d8e85e62441.tar.bz2
busybox-w32-91d2370c2c6a5a6a8214647730701d8e85e62441.zip
Larry Doolittle writes:
This is a bulk spelling fix patch against busybox-1.00-pre10. If anyone gets a corrupted copy (and cares), let me know and I will make alternate arrangements. Erik - please apply. Authors - please check that I didn't corrupt any meaning. Package importers - see if any of these changes should be passed to the upstream authors. I glossed over lots of sloppy capitalizations, missing apostrophes, mixed American/British spellings, and German-style compound words. What is "pretect redefined for test" in cmdedit.c? Good luck on the 1.00 release! - Larry git-svn-id: svn://busybox.net/trunk/busybox@8759 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/expr.c')
-rw-r--r--coreutils/expr.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/coreutils/expr.c b/coreutils/expr.c
index e5816371a..cbbd4cd03 100644
--- a/coreutils/expr.c
+++ b/coreutils/expr.c
@@ -9,24 +9,24 @@
9 * Copyright (c) 2000 Edward Betts <edward@debian.org>. 9 * Copyright (c) 2000 Edward Betts <edward@debian.org>.
10 * Aug 2003 Vladimir Oleynik - reduced 464 bytes. 10 * Aug 2003 Vladimir Oleynik - reduced 464 bytes.
11 * 11 *
12 * this program is free software; you can redistribute it and/or modify 12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the gnu general public license as published by 13 * it under the terms of the GNU General Public License as published by
14 * the free software foundation; either version 2 of the license, or 14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version. 15 * (at your option) any later version.
16 * 16 *
17 * this program is distributed in the hope that it will be useful, 17 * This program is distributed in the hope that it will be useful,
18 * but without any warranty; without even the implied warranty of 18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * merchantability or fitness for a particular purpose. see the gnu 19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * general public license for more details. 20 * General Public License for more details.
21 * 21 *
22 * you should have received a copy of the gnu general public license 22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the free software 23 * along with this program; if not, write to the Free Software
24 * foundation, inc., 59 temple place, suite 330, boston, ma 02111-1307 usa 24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 * 25 *
26 */ 26 */
27 27
28/* This program evaluates expressions. Each token (operator, operand, 28/* This program evaluates expressions. Each token (operator, operand,
29 * parenthesis) of the expression must be a seperate argument. The 29 * parenthesis) of the expression must be a separate argument. The
30 * parser used is a reasonably general one, though any incarnation of 30 * parser used is a reasonably general one, though any incarnation of
31 * it is language-specific. It is especially nice for expressions. 31 * it is language-specific. It is especially nice for expressions.
32 * 32 *