strftime.c 273 B

12345678910111213141516
  1. /*
  2. * strftime.c
  3. * Portable strftime implementation. Uses GNU's strftime().
  4. *
  5. */
  6. #include "src/main.h"
  7. #include "strftime.h"
  8. #ifndef HAVE_STRFTIME
  9. # undef emacs
  10. # undef _LIBC
  11. # define strftime egg_strftime
  12. # include "gnu_strftime.c"
  13. #endif /* !HAVE_STRFTIME */