Commit e0f3e6bc authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

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

parent 449e2655
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#ifndef __WINE_CRT0_PRIVATE_H__ #ifndef __WINE_CRT0_PRIVATE_H__
#define __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 _init(int argc, char **argv, char **envp ) { /* nothing */ }
static inline void _fini(void) { /* nothing */ } static inline void _fini(void) { /* nothing */ }
#else #else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment