mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 09:09:54 -05:00
stdio kludge for OS/390; stdlib.h must be included after stdio.h
This commit is contained in:
parent
91836e4eba
commit
589b0fcdd6
1 changed files with 7 additions and 0 deletions
|
|
@ -32,4 +32,11 @@
|
|||
# define EXIT_FAILURE 1
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_EBCDIC
|
||||
#undef putchar
|
||||
#undef putc
|
||||
#define putchar(c) putc((c), stdout)
|
||||
#define putc(c, fp) do { char x=(c); __atoe_l(&x,1); putc(x,fp);} while(0)
|
||||
#endif
|
||||
|
||||
#endif /* _AC_STDLIB_H */
|
||||
|
|
|
|||
Loading…
Reference in a new issue