Bash-5.3-alpha release

This commit is contained in:
Chet Ramey
2024-04-22 10:33:38 -04:00
parent f3b6bd1945
commit 622d318652
700 changed files with 136534 additions and 96420 deletions
+4 -7
View File
@@ -17,11 +17,10 @@
extern int errno;
#endif
extern char *strerror ();
extern char *strerror (int);
int
template_builtin (list)
WORD_LIST *list;
template_builtin (WORD_LIST *list)
{
int opt, rval;
@@ -45,16 +44,14 @@ template_builtin (list)
/* Called when `template' is enabled and loaded from the shared object. If this
function returns 0, the load fails. */
int
template_builtin_load (name)
char *name;
template_builtin_load (char *name)
{
return (1);
}
/* Called when `template' is disabled. */
void
template_builtin_unload (name)
char *name;
template_builtin_unload (char *name)
{
}