first set of ANSI C changes: remove PARAMS

This commit is contained in:
Chet Ramey
2023-01-03 10:01:11 -05:00
parent b648a9ab79
commit 81e3a4fb07
232 changed files with 2607 additions and 3826 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
/* imalloc.h -- internal malloc definitions shared by source files. */
/* Copyright (C) 2001-2020 Free Software Foundation, Inc.
/* Copyright (C) 2001-2022 Free Software Foundation, Inc.
This file is part of GNU Bash, the Bourne Again SHell.
@@ -172,7 +172,7 @@ do { \
#include <signal.h>
extern void _malloc_block_signals PARAMS((sigset_t *, sigset_t *));
extern void _malloc_unblock_signals PARAMS((sigset_t *, sigset_t *));
extern void _malloc_block_signals (sigset_t *, sigset_t *);
extern void _malloc_unblock_signals (sigset_t *, sigset_t *);
#endif /* _IMALLOC_H */