summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-04-11 11:56:41 +0000
committerJim Meyering <jim@meyering.net>2003-04-11 11:56:41 +0000
commit6eb5e28e870387fed89f138f1ef673b8d87de250 (patch)
treee101da5ef4aa34dc41450aaba4dc6bbd6c5bdf58 /lib
parent3bb4efc2af02fc55a99feda54d44f20fba39f71a (diff)
downloadcoreutils-6eb5e28e870387fed89f138f1ef673b8d87de250.tar.xz
Remove use of PARAMS.
Diffstat (limited to 'lib')
-rw-r--r--lib/xmalloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/xmalloc.c b/lib/xmalloc.c
index 3affee7a9..46620cac5 100644
--- a/lib/xmalloc.c
+++ b/lib/xmalloc.c
@@ -1,5 +1,5 @@
/* xmalloc.c -- malloc with out of memory checking
- Copyright (C) 1990-1999, 2000, 2002 Free Software Foundation, Inc.
+ Copyright (C) 1990-1999, 2000, 2002, 2003 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
@@ -56,7 +56,7 @@ void free ();
int xalloc_exit_failure = EXIT_FAILURE;
/* If non NULL, call this function when memory is exhausted. */
-void (*xalloc_fail_func) PARAMS ((void)) = 0;
+void (*xalloc_fail_func) (void) = 0;
/* If XALLOC_FAIL_FUNC is NULL, or does return, display this message
before exiting when memory is exhausted. Goes through gettext. */