diff options
author | Christopher Faylor <me@cgf.cx> | 2000-02-17 19:38:31 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-02-17 19:38:31 +0000 |
commit | 369d8a8fd5e887eca547bf34bccfdf755c9e5397 (patch) | |
tree | 5c5dc851bf01a5938662571357ffd5d7bb152a79 /winsup/cygwin/include/wchar.h | |
parent | 4415a7ef3e26c669f5f7c5c7efbf7b6ea9b7e2f4 (diff) | |
download | cygnal-369d8a8fd5e887eca547bf34bccfdf755c9e5397.tar.gz cygnal-369d8a8fd5e887eca547bf34bccfdf755c9e5397.tar.bz2 cygnal-369d8a8fd5e887eca547bf34bccfdf755c9e5397.zip |
import winsup-2000-02-17 snapshot
Diffstat (limited to 'winsup/cygwin/include/wchar.h')
-rw-r--r-- | winsup/cygwin/include/wchar.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/winsup/cygwin/include/wchar.h b/winsup/cygwin/include/wchar.h new file mode 100644 index 000000000..8c7c94dca --- /dev/null +++ b/winsup/cygwin/include/wchar.h @@ -0,0 +1,27 @@ +/* wchar.h + + Copyright 1998 Cygnus Solutions + +This file is part of Cygwin. + +This software is a copyrighted work licensed under the terms of the +Cygwin license. Please consult the file "CYGWIN_LICENSE" for +details. */ + +#ifndef _WCHAR_H +#define _WCHAR_H + +#include <sys/cdefs.h> + +/* Get wchar_t from <stddef.h>. */ +#define __need_wchar_t +#include <stddef.h> + +__BEGIN_DECLS + +int wcscmp (wchar_t *__s1, wchar_t *__s2); +int wcslen (wchar_t *__s1); + +__END_DECLS + +#endif /* _WCHAR_H */ |