2 #include <../ctype/local.h>
4 /* internal function to compute width of wide char. */
5 int __wcwidth (wint_t);
9 Add the compiler optimization to inhibit loop transformation to library
10 calls. This is used to avoid recursive calls in memset and memmove
11 default implementations.
13 #ifdef _HAVE_CC_INHIBIT_LOOP_TO_LIBCALL
14 # define __inhibit_loop_to_libcall \
15 __attribute__ ((__optimize__ ("-fno-tree-loop-distribute-patterns")))
17 # define __inhibit_loop_to_libcall