Merge from vendor branch DIFFUTILS:
[dragonfly.git] / contrib / awk / version.c
1 char *version_string = "@(#)GNU Awk 3.0";
2
3 /* 1.02         fixed /= += *= etc to return the new Left Hand Side instead
4                 of the Right Hand Side */
5
6 /* 1.03         Fixed split() to treat strings of space and tab as FS if
7                 the split char is ' '.
8
9                 Added -v option to print version number
10                 
11                 Fixed bug that caused rounding when printing large numbers  */
12
13 /* 2.00beta     Incorporated the functionality of the "new" awk as described
14                 the book (reference not handy).  Extensively tested, but no 
15                 doubt still buggy.  Badly needs tuning and cleanup, in
16                 particular in memory management which is currently almost
17                 non-existent. */
18
19 /* 2.01         JF:  Modified to compile under GCC, and fixed a few
20                 bugs while I was at it.  I hope I didn't add any more.
21                 I modified parse.y to reduce the number of reduce/reduce
22                 conflicts.  There are still a few left. */
23
24 /* 2.02         Fixed JF's bugs; improved memory management, still needs
25                 lots of work. */
26
27 /* 2.10         Major grammar rework and lots of bug fixes from David.
28                 Major changes for performance enhancements from David.
29                 A number of minor bug fixes and new features from Arnold.
30                 Changes for MSDOS from Conrad Kwok and Scott Garfinkle.
31                 The gawk.texinfo and info files included! */
32
33 /* 2.11         Bug fix release to 2.10.  Lots of changes for portability,
34                 speed, and configurability.  */
35
36 /* 2.12         Lots of changes for portability, speed, and configurability.
37                 Several bugs fixed.  POSIX compliance.  Removal of last set
38                 of hard-wired limits.  Atari and VMS ports added. */
39
40 /* 2.13         Public release of 2.12 */
41
42 /* 2.14         Mostly bug fixes. */
43
44 /* 2.15         Bug fixes plus intermixing of command-line source and files,
45                 GNU long options, ARGIND, ERRNO and Plan 9 style /dev/ files.
46                 `delete array'. OS/2 port added. */
47
48 /* 3.0          RS as regexp, RT variable, FS = "", fflush builtin, posix
49                 regexps, IGNORECASE applies to all comparison, autoconf, source
50                 code cleanup. See the NEWS file. */