1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07:00

* src/strftime.c (_strftime_copytm): Add declaration.

This commit is contained in:
Dan Nicolaescu 2010-11-18 13:39:15 -08:00
parent dde990a0f9
commit 94fa383385
2 changed files with 5 additions and 0 deletions

View file

@ -1,5 +1,7 @@
2010-11-18 Dan Nicolaescu <dann@ics.uci.edu>
* strftime.c (_strftime_copytm): Add declaration.
* callproc.c (syms_of_callproc): Use intern_c_string.
Move declarations from .c files to .h files.

View file

@ -461,6 +461,9 @@ static CHAR_T const month_name[][10] =
/* Solaris 2.5 tzset sometimes modifies the storage returned by localtime.
Work around this bug by copying *tp before it might be munged. */
size_t
_strftime_copytm (CHAR_T *s, size_t maxsize, const CHAR_T *format,
const struct tm *tp extra_args_spec LOCALE_PARAM_DECL);
size_t
my_strftime (CHAR_T *s, size_t maxsize, const CHAR_T *format,
const struct tm *tp extra_args_spec)
{