1 /*
2  * strftime.c
3  *   Portable strftime implementation. Uses GNU's strftime().
4  *
5  * $Id: strftime.c,v 1.6 2003/11/28 20:13:41 [Xp-AvR] Exp $
6  */
7 
8 #include "src/main.h"
9 #include "strftime.h"
10 
11 #ifndef HAVE_STRFTIME
12 #  undef emacs
13 #  undef _LIBC
14 #  define strftime EvangelineStrftime
15 
16 #  include "gnu_strftime.c"
17 #endif /* !HAVE_STRFTIME */
18