auto import from //branches/cupcake/...@126645

This commit is contained in:
The Android Open Source Project
2009-01-15 16:12:07 -08:00
parent 6d6c82c7a0
commit e5cc1f386b
14 changed files with 39 additions and 13 deletions

View File

@@ -30,11 +30,17 @@
#include <sys/cdefs.h>
#include <stdio.h>
/* wchar_t is required in stdlib.h according to POSIX */
#define __need___wchar_t
#include <stddef.h>
#include <stdarg.h>
#include <time.h>
#include <malloc.h>
#include <stddef.h>
/* IMPORTANT: Any code that relies on wide character support is essentially
* non-portable and/or broken. the only reason this header exist
* is because I'm really a nice guy. However, I'm not nice enough
@@ -44,11 +50,6 @@
__BEGIN_DECLS
#ifndef __cplusplus
/* wchar_t is a builtin keyword of g++ */
typedef unsigned char wchar_t;
#endif
typedef int wint_t;
typedef struct { int dummy; } mbstate_t;