winecrt0: Android NDK doesn't have _init and _fini.

This commit is contained in:
André Hentschel 2013-03-10 12:04:00 +01:00 committed by Alexandre Julliard
parent 449e2655c2
commit e0f3e6bcf2

View file

@ -21,7 +21,7 @@
#ifndef __WINE_CRT0_PRIVATE_H__
#define __WINE_CRT0_PRIVATE_H__
#ifdef __APPLE__
#if defined(__APPLE__) || defined(__ANDROID__)
static inline void _init(int argc, char **argv, char **envp ) { /* nothing */ }
static inline void _fini(void) { /* nothing */ }
#else