Merge "Work around missing _Exit in old API levels."

am: f45bc14d54

Change-Id: I29dcf7229132c304bc55486444decb16813fbe86
This commit is contained in:
Elliott Hughes 2017-07-01 15:59:32 +00:00 committed by android-build-merger
commit 9995dc1519

View file

@ -36,6 +36,8 @@
__BEGIN_DECLS
__noreturn void _Exit(int) __RENAME(_exit);
static __inline float strtof(const char *nptr, char **endptr) {
return (float)strtod(nptr, endptr);
}