strftime.c 247 B

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