diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | random.h | 11 |
2 files changed, 4 insertions, 10 deletions
@@ -3,6 +3,7 @@ * awkgram.c: Regenerated from bison 2.7.1. * dfa.h, dfa.c: Minor edits to sync with GNU grep. * gettext.h: Sync with gettext 0.18.2.1. + * random.h: Remove obsolete __P macro and use. Update copyright. 2013-04-14 Arnold D. Robbins <arnold@skeeve.com> @@ -66,7 +67,7 @@ 2013-02-26 Arnold D. Robbins <arnold@skeeve.com> - * parse.y (expression_list): In case of error return the list + * awkgram.y (expression_list): In case of error return the list instead of NULL so that snode gets something it can count. 2013-02-12 Arnold D. Robbins <arnold@skeeve.com> @@ -3,7 +3,7 @@ */ /* - * Copyright (C) 1996, 2001, 2004, 2005 the Free Software Foundation, Inc. + * Copyright (C) 1996, 2001, 2004, 2005, 2013 the Free Software Foundation, Inc. * * This file is part of GAWK, the GNU implementation of the * AWK Programming Language. @@ -40,11 +40,4 @@ typedef long gawk_int32_t; #define uint32_t gawk_uint32_t #define int32_t gawk_int32_t -#ifdef __STDC__ -#undef __P -#define __P(s) s -#else -#define __P(s) () -#endif - -extern long random __P((void)); +extern long random (void); |