diff options
author | Jim Meyering <jim@meyering.net> | 2000-04-17 11:39:26 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-04-17 11:39:26 +0000 |
commit | d2caf6a98c29b30d5ebe7979b0de3fa8e7056a2e (patch) | |
tree | 41ea14b67c92e58ec1826b28d536eddeba8a013d /lib | |
parent | c2981f650792f050634b830cd2129ca07cbfede1 (diff) | |
download | coreutils-d2caf6a98c29b30d5ebe7979b0de3fa8e7056a2e.tar.xz |
(my_strftime) [strftime]: Declare strftime here, since the definition
of it to rpl_strftime also defined-away the system's declaration.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/strftime.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/strftime.c b/lib/strftime.c index f3dcd77f4..6ab2be7d4 100644 --- a/lib/strftime.c +++ b/lib/strftime.c @@ -822,6 +822,7 @@ my_strftime (s, maxsize, format, tp ut_argument) "#define strftime rpl_strftime". */ # ifdef strftime # undef strftime + size_t strftime (); # endif *u++ = '%'; |