mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-06 20:00:49 +02:00
commit bash-20200605 snapshot
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/* bashversion.c -- Display bash version information. */
|
||||
|
||||
/* Copyright (C) 2001 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 2001-2020 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Bash, the Bourne Again SHell.
|
||||
|
||||
@@ -47,8 +47,8 @@ extern char *optarg;
|
||||
extern char *dist_version;
|
||||
extern int patch_level;
|
||||
|
||||
extern char *shell_version_string __P((void));
|
||||
extern void show_shell_version __P((int));
|
||||
extern char *shell_version_string PARAMS((void));
|
||||
extern void show_shell_version PARAMS((int));
|
||||
|
||||
char *shell_name = "bash";
|
||||
char *progname;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/* mksignames.c -- Create and write `signames.h', which contains an array of
|
||||
signal names. */
|
||||
|
||||
/* Copyright (C) 1992-2006 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1992-2020 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GNU Bash, the Bourne Again SHell.
|
||||
|
||||
@@ -57,7 +57,7 @@ write_signames (stream)
|
||||
"/* A translation list so we can be polite to our users. */\n");
|
||||
#if defined (CROSS_COMPILING)
|
||||
fprintf (stream, "extern char *signal_names[];\n\n");
|
||||
fprintf (stream, "extern void initialize_signames __P((void));\n\n");
|
||||
fprintf (stream, "extern void initialize_signames PARAMS((void));\n\n");
|
||||
#else
|
||||
fprintf (stream, "char *signal_names[NSIG + 4] = {\n");
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
# in the makefile. This creates a file named by the -o option,
|
||||
# otherwise everything is echoed to the standard output.
|
||||
|
||||
# Copyright (C) 1996-2002 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1996-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
@@ -153,8 +153,8 @@ echo "#define SCCSVERSION \"@(#)Bash version ${sccs_string}\""
|
||||
# extern function declarations
|
||||
#echo
|
||||
#echo '/* Functions from version.c. */'
|
||||
#echo 'extern char *shell_version_string __P((void));'
|
||||
#echo 'extern void show_shell_version __P((int));'
|
||||
#echo 'extern char *shell_version_string PARAMS((void));'
|
||||
#echo 'extern void show_shell_version PARAMS((int));'
|
||||
|
||||
if [ -n "$inc_build" ]; then
|
||||
# Make sure we can write to .build
|
||||
|
||||
Reference in New Issue
Block a user