aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/emacs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emacs.c b/src/emacs.c
index bdd9eee10c4..25b014bf83c 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1263,12 +1263,12 @@ maybe_load_seccomp (int argc, char **argv)
1263 1263
1264#endif /* SECCOMP_USABLE */ 1264#endif /* SECCOMP_USABLE */
1265 1265
1266#if defined HAVE_ANDROID && !defined ANDROID_STUBIFY 1266#if !defined HAVE_ANDROID || defined ANDROID_STUBIFY
1267int 1267int
1268android_emacs_init (int argc, char **argv, char *dump_file) 1268main (int argc, char **argv)
1269#else 1269#else
1270int 1270int
1271main (int argc, char **argv) 1271android_emacs_init (int argc, char **argv, char *dump_file)
1272#endif 1272#endif
1273{ 1273{
1274 /* Variable near the bottom of the stack, and aligned appropriately 1274 /* Variable near the bottom of the stack, and aligned appropriately