diff options
author | Jim Blandy <jimb@redhat.com> | 1992-09-13 12:37:43 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-09-13 12:37:43 +0000 |
commit | 4fbc0284b10a3613619bd7bcf8f0b3d7f839a8b5 (patch) | |
tree | 77f704634f5c13c069d0f4e94ac3fe2e7874291e /src/unexmips.c | |
parent | 0abf54e322692375c4f1d127e2361a9d4553b3ba (diff) | |
download | emacs-4fbc0284b10a3613619bd7bcf8f0b3d7f839a8b5.tar.gz |
* unexmips.c (mark_x): Declare this as static void at the top of
the file and at the function definition.
Diffstat (limited to 'src/unexmips.c')
-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. */ #endif static void fatal_unexec (); +static void mark_x (); #define READ(_fd, _buffer, _size, _error_message, _error_arg) \ errno = EEOF; \ @@ -277,7 +278,7 @@ unexec (new_name, a_name, data_start, bss_start, entry_address) * After succesfully building the new a.out, mark it executable */ -static +static void mark_x (name) char *name; { |