2011-04-19 13:55:53 +02:00
|
|
|
--- doc/gawk.texi.orig
|
|
|
|
+++ doc/gawk.texi
|
2011-08-10 11:55:56 +02:00
|
|
|
@@ -1549,7 +1549,7 @@ and
|
2011-04-19 13:55:53 +02:00
|
|
|
Chuck Toporek.
|
|
|
|
|
|
|
|
@cindex Berry, Karl
|
|
|
|
-@cindex Chassell, Robert J.@:
|
|
|
|
+@cindex Chassell, Robert J.
|
|
|
|
@c @cindex Texinfo
|
|
|
|
Robert J.@: Chassell provided much valuable advice on
|
|
|
|
the use of Texinfo.
|
2011-08-10 11:55:56 +02:00
|
|
|
@@ -27180,7 +27180,7 @@ did the initial work to convert @command
|
|
|
|
GNU Automake and GNU @code{gettext}.
|
2006-12-19 00:16:01 +01:00
|
|
|
|
2011-04-19 13:55:53 +02:00
|
|
|
@item
|
|
|
|
-@cindex Broder, Alan J.@:
|
|
|
|
+@cindex Broder, Alan J.
|
|
|
|
Alan J.@: Broder
|
2011-08-10 11:55:56 +02:00
|
|
|
provided the initial version of the @code{asort()} function
|
|
|
|
as well as the code for the optional third argument to the
|
|
|
|
--- builtin.c.orig
|
2006-12-19 00:16:01 +01:00
|
|
|
+++ builtin.c
|
2009-11-16 11:44:46 +01:00
|
|
|
@@ -29,7 +29,6 @@
|
|
|
|
#include <fcntl.h>
|
2006-12-19 00:16:01 +01:00
|
|
|
#endif
|
|
|
|
#include <math.h>
|
|
|
|
-#include "random.h"
|
2011-04-19 13:55:53 +02:00
|
|
|
#include "floatmagic.h"
|
2006-12-19 00:16:01 +01:00
|
|
|
|
|
|
|
#ifndef CHAR_BIT
|
2011-08-10 11:55:56 +02:00
|
|
|
@@ -60,11 +59,6 @@
|
|
|
|
static size_t mbc_byte_count(const char *ptr, size_t numchars);
|
|
|
|
static size_t mbc_char_count(const char *ptr, size_t numbytes);
|
2006-12-19 00:16:01 +01:00
|
|
|
|
2011-08-10 11:55:56 +02:00
|
|
|
-/* Can declare these, since we always use the random shipped with gawk */
|
|
|
|
-extern char *initstate(unsigned long seed, char *state, long n);
|
|
|
|
-extern char *setstate(char *state);
|
|
|
|
-extern long random(void);
|
|
|
|
-extern void srandom(unsigned long seed);
|
2006-12-19 00:16:01 +01:00
|
|
|
|
2011-08-10 11:55:56 +02:00
|
|
|
extern NODE **args_array;
|
|
|
|
extern int max_args;
|
|
|
|
--- Makefile.am.orig
|
2011-04-19 13:55:53 +02:00
|
|
|
+++ Makefile.am
|
2011-08-10 11:55:56 +02:00
|
|
|
@@ -103,11 +103,7 @@ base_sources = \
|
2011-04-19 13:55:53 +02:00
|
|
|
msg.c \
|
|
|
|
node.c \
|
|
|
|
protos.h \
|
|
|
|
- random.c \
|
|
|
|
- random.h \
|
|
|
|
re.c \
|
|
|
|
- regex.c \
|
|
|
|
- regex.h \
|
|
|
|
replace.c \
|
|
|
|
version.c \
|
|
|
|
xalloc.h
|