Skip to content
Snippets Groups Projects
Commit f54de436 authored by Howard Chu's avatar Howard Chu
Browse files

stdio #defines for HAVE_EBCDIC

parent 11761fa6
No related branches found
No related tags found
No related merge requests found
......@@ -95,6 +95,19 @@
#define LDAP_DEBUG
#endif
#ifdef HAVE_EBCDIC
/* ASCII/EBCDIC converting replacements for stdio funcs
* vsnprintf and snprintf are used too, but they are already
* checked by the configure script
*/
#define fputs lutil_fputs
#define fgets lutil_fgets
#define printf lutil_printf
#define fprintf lutil_fprintf
#define vfprintf lutil_vfprintf
#define vsprintf lutil_vsprintf
#endif
#include "ldap_cdefs.h"
#include "ldap_features.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment