Codebase list uclibc / 4faf90b1-bac4-49d1-b7f9-8dd7af0c7795/main include / wchar-stub.h
4faf90b1-bac4-49d1-b7f9-8dd7af0c7795/main

Tree @4faf90b1-bac4-49d1-b7f9-8dd7af0c7795/main (Download .tar.gz)

wchar-stub.h @4faf90b1-bac4-49d1-b7f9-8dd7af0c7795/mainraw · history · blame

/* This wchar.h is used if wchar support is disabled in uClibc.
 * We still want to provide a few basic definitions as the basic
 * C standard requires them.  And it makes our lives easier with
 * no additional overhead.
 */

#ifndef _WCHAR_H
#define _WCHAR_H

typedef unsigned int wint_t;
#define WEOF (0xffffffffu)

#endif