wchar-ldbl.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* -mlong-double-64 compatibility mode for <wchar.h> functions.
  2. Copyright (C) 2006-2016 Free Software Foundation, Inc.
  3. This file is part of the GNU C Library.
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Lesser General Public
  6. License as published by the Free Software Foundation; either
  7. version 2.1 of the License, or (at your option) any later version.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef _WCHAR_H
  16. # error "Never include <bits/wchar-ldbl.h> directly; use <wchar.h> instead."
  17. #endif
  18. #if defined __USE_ISOC95 || defined __USE_UNIX98
  19. __BEGIN_NAMESPACE_C99
  20. __LDBL_REDIR_DECL (fwprintf);
  21. __LDBL_REDIR_DECL (wprintf);
  22. __LDBL_REDIR_DECL (swprintf);
  23. __LDBL_REDIR_DECL (vfwprintf);
  24. __LDBL_REDIR_DECL (vwprintf);
  25. __LDBL_REDIR_DECL (vswprintf);
  26. # if defined __USE_ISOC99 && !defined __USE_GNU \
  27. && !defined __REDIRECT \
  28. && (defined __STRICT_ANSI__ || defined __USE_XOPEN2K)
  29. __LDBL_REDIR1_DECL (fwscanf, __nldbl___isoc99_fwscanf)
  30. __LDBL_REDIR1_DECL (wscanf, __nldbl___isoc99_wscanf)
  31. __LDBL_REDIR1_DECL (swscanf, __nldbl___isoc99_swscanf)
  32. # else
  33. __LDBL_REDIR_DECL (fwscanf);
  34. __LDBL_REDIR_DECL (wscanf);
  35. __LDBL_REDIR_DECL (swscanf);
  36. # endif
  37. __END_NAMESPACE_C99
  38. #endif
  39. #ifdef __USE_ISOC99
  40. __BEGIN_NAMESPACE_C99
  41. __LDBL_REDIR1_DECL (wcstold, wcstod);
  42. # if !defined __USE_GNU && !defined __REDIRECT \
  43. && (defined __STRICT_ANSI__ || defined __USE_XOPEN2K)
  44. __LDBL_REDIR1_DECL (vfwscanf, __nldbl___isoc99_vfwscanf)
  45. __LDBL_REDIR1_DECL (vwscanf, __nldbl___isoc99_vwscanf)
  46. __LDBL_REDIR1_DECL (vswscanf, __nldbl___isoc99_vswscanf)
  47. # else
  48. __LDBL_REDIR_DECL (vfwscanf);
  49. __LDBL_REDIR_DECL (vwscanf);
  50. __LDBL_REDIR_DECL (vswscanf);
  51. # endif
  52. __END_NAMESPACE_C99
  53. #endif
  54. #ifdef __USE_GNU
  55. __LDBL_REDIR1_DECL (wcstold_l, wcstod_l);
  56. #endif
  57. #if __USE_FORTIFY_LEVEL > 0 && defined __fortify_function
  58. __LDBL_REDIR_DECL (__swprintf_chk)
  59. __LDBL_REDIR_DECL (__vswprintf_chk)
  60. # if __USE_FORTIFY_LEVEL > 1
  61. __LDBL_REDIR_DECL (__fwprintf_chk)
  62. __LDBL_REDIR_DECL (__wprintf_chk)
  63. __LDBL_REDIR_DECL (__vfwprintf_chk)
  64. __LDBL_REDIR_DECL (__vwprintf_chk)
  65. # endif
  66. #endif