diff options
| author | Karl Heuer | 1995-05-12 22:23:42 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-05-12 22:23:42 +0000 |
| commit | b9df9faab45baa583b2dd388de708b0986bfbe30 (patch) | |
| tree | e52b03c60e0e4479245f20f236a387bbd418a42a /src | |
| parent | cd17ae3fe7b9d33d6eda8b1a07c9a5f6cda8cf55 (diff) | |
| download | emacs-b9df9faab45baa583b2dd388de708b0986bfbe30.tar.gz emacs-b9df9faab45baa583b2dd388de708b0986bfbe30.zip | |
(main) [NeXT]: Add missing braces.
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/emacs.c b/src/emacs.c index 2a79068b39f..08c91a5a093 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -449,12 +449,13 @@ main (argc, argv, envp) | |||
| 449 | #endif | 449 | #endif |
| 450 | 450 | ||
| 451 | #ifdef NeXT | 451 | #ifdef NeXT |
| 452 | extern int malloc_cookie; | 452 | { |
| 453 | 453 | extern int malloc_cookie; | |
| 454 | /* This helps out unexnext.c. */ | 454 | /* This helps out unexnext.c. */ |
| 455 | if (initialized) | 455 | if (initialized) |
| 456 | if (malloc_jumpstart (malloc_cookie) != 0) | 456 | if (malloc_jumpstart (malloc_cookie) != 0) |
| 457 | printf ("malloc jumpstart failed!\n"); | 457 | printf ("malloc jumpstart failed!\n"); |
| 458 | } | ||
| 458 | #endif /* NeXT */ | 459 | #endif /* NeXT */ |
| 459 | 460 | ||
| 460 | #ifdef VMS | 461 | #ifdef VMS |