summaryrefslogtreecommitdiff
path: root/lib/xstrtol.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2003-06-18 05:52:19 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2003-06-18 05:52:19 +0000
commit68af56be3e061b97cf97150094bc50b0aa364cbb (patch)
treebdb72b16dd6b1992a31fe7bab628b23efb870a5f /lib/xstrtol.h
parentc947ae968b9fdb7a65f1481b7c7ec68e6a0d3abc (diff)
downloadgnulib-68af56be3e061b97cf97150094bc50b0aa364cbb.tar.gz
Assume C89, so PARAMS isn't needed.
Diffstat (limited to 'lib/xstrtol.h')
-rw-r--r--lib/xstrtol.h16
1 files changed, 4 insertions, 12 deletions
diff --git a/lib/xstrtol.h b/lib/xstrtol.h
index a1ad32dd5d..9af90aad35 100644
--- a/lib/xstrtol.h
+++ b/lib/xstrtol.h
@@ -1,5 +1,7 @@
/* A more useful interface to strtol.
- Copyright 1995, 1996, 1998, 1999, 2001, 2002 Free Software Foundation, Inc.
+
+ Copyright (C) 1995, 1996, 1998, 1999, 2001, 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
@@ -27,14 +29,6 @@
# endif
# endif
-# ifndef PARAMS
-# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
-# define PARAMS(Args) Args
-# else
-# define PARAMS(Args) ()
-# endif
-# endif
-
# ifndef _STRTOL_ERROR
enum strtol_error
{
@@ -44,9 +38,7 @@ typedef enum strtol_error strtol_error;
# endif
# define _DECLARE_XSTRTOL(name, type) \
- strtol_error \
- name PARAMS ((const char *s, char **ptr, int base, \
- type *val, const char *valid_suffixes));
+ strtol_error name (const char *, char **, int, type *, const char *);
_DECLARE_XSTRTOL (xstrtol, long int)
_DECLARE_XSTRTOL (xstrtoul, unsigned long int)
_DECLARE_XSTRTOL (xstrtoimax, intmax_t)