diff options
| author | Jim Blandy | 1992-09-13 12:37:43 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-09-13 12:37:43 +0000 |
| commit | 4fbc0284b10a3613619bd7bcf8f0b3d7f839a8b5 (patch) | |
| tree | 77f704634f5c13c069d0f4e94ac3fe2e7874291e /src | |
| parent | 0abf54e322692375c4f1d127e2361a9d4553b3ba (diff) | |
| download | emacs-4fbc0284b10a3613619bd7bcf8f0b3d7f839a8b5.tar.gz emacs-4fbc0284b10a3613619bd7bcf8f0b3d7f839a8b5.zip | |
* unexmips.c (mark_x): Declare this as static void at the top of
the file and at the function definition.
Diffstat (limited to 'src')
| -rw-r--r-- | src/unexmips.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/unexmips.c b/src/unexmips.c index 76de824d06a..32f015f5732 100644 --- a/src/unexmips.c +++ b/src/unexmips.c | |||
| @@ -41,6 +41,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |||
| 41 | #endif | 41 | #endif |
| 42 | 42 | ||
| 43 | static void fatal_unexec (); | 43 | static void fatal_unexec (); |
| 44 | static void mark_x (); | ||
| 44 | 45 | ||
| 45 | #define READ(_fd, _buffer, _size, _error_message, _error_arg) \ | 46 | #define READ(_fd, _buffer, _size, _error_message, _error_arg) \ |
| 46 | errno = EEOF; \ | 47 | errno = EEOF; \ |
| @@ -277,7 +278,7 @@ unexec (new_name, a_name, data_start, bss_start, entry_address) | |||
| 277 | * After succesfully building the new a.out, mark it executable | 278 | * After succesfully building the new a.out, mark it executable |
| 278 | */ | 279 | */ |
| 279 | 280 | ||
| 280 | static | 281 | static void |
| 281 | mark_x (name) | 282 | mark_x (name) |
| 282 | char *name; | 283 | char *name; |
| 283 | { | 284 | { |