aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1992-09-13 12:37:43 +0000
committerJim Blandy1992-09-13 12:37:43 +0000
commit4fbc0284b10a3613619bd7bcf8f0b3d7f839a8b5 (patch)
tree77f704634f5c13c069d0f4e94ac3fe2e7874291e /src
parent0abf54e322692375c4f1d127e2361a9d4553b3ba (diff)
downloademacs-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.c3
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
43static void fatal_unexec (); 43static void fatal_unexec ();
44static 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
280static 281static void
281mark_x (name) 282mark_x (name)
282 char *name; 283 char *name;
283{ 284{