diff options
| -rw-r--r-- | src/emacs.c | 6 |
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 |
| 1267 | int | 1267 | int |
| 1268 | android_emacs_init (int argc, char **argv, char *dump_file) | 1268 | main (int argc, char **argv) |
| 1269 | #else | 1269 | #else |
| 1270 | int | 1270 | int |
| 1271 | main (int argc, char **argv) | 1271 | android_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 |