wchar-stub.h 346 B

1234567891011121314
  1. /* This wchar.h is used if wchar support is disabled in uClibc.
  2. * We still want to provide a few basic definitions as the basic
  3. * C standard requires them. And it makes our lives easier with
  4. * no additional overhead.
  5. */
  6. #ifndef _WCHAR_H
  7. #define _WCHAR_H
  8. #define MB_CUR_MAX 1
  9. typedef unsigned int wint_t;
  10. #define WEOF (0xffffffffu)
  11. #endif