2004-01-02 Andrew Cagney <cagney@redhat.com>
authorAndrew Cagney <cagney@redhat.com>
Fri, 2 Jan 2004 17:35:01 +0000 (17:35 +0000)
committerAndrew Cagney <cagney@redhat.com>
Fri, 2 Jan 2004 17:35:01 +0000 (17:35 +0000)
* utils.c (do_my_cleanups): Make static, add forward declaration.
* defs.h (do_my_cleanups): Delete declaration.

gdb/ChangeLog
gdb/defs.h
gdb/testsuite/gdb.base/fileio.c
gdb/utils.c

index 2a7f145e614b4b480a9eed4e3ab3f66129db5ba7..e144796255176e8638f5e85c5844a823742fa73c 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-02  Andrew Cagney  <cagney@redhat.com>
+
+       * utils.c (do_my_cleanups): Make static, add forward declaration.
+       * defs.h (do_my_cleanups): Delete declaration.
+
 2004-01-02  Eli Zaretskii  <eliz@elta.co.il>
 
        * config/djgpp/fnchange.lst: Add lines for gdb/ChangeLog-2003 and
index 9db0af2cdc2e4005499584eb67c1ea6a7104a1fa..443ad6b0937812a0acb6d5e4f8c704a98e86e74d 100644 (file)
@@ -355,7 +355,6 @@ extern void request_quit (int);
 
 extern void do_cleanups (struct cleanup *);
 extern void do_final_cleanups (struct cleanup *);
-extern void do_my_cleanups (struct cleanup **, struct cleanup *);
 extern void do_run_cleanups (struct cleanup *);
 extern void do_exec_cleanups (struct cleanup *);
 extern void do_exec_error_cleanups (struct cleanup *);
index 591b3b67588921ceb513b6ba9655dc0599526149..9c40eb4d3968a20d98a2a747814fdfaac736f8d9 100644 (file)
@@ -103,7 +103,7 @@ test_open ()
     close (ret);
   /* Open for write but no write permission */
   errno = 0;
-  ret = open (NOWRITE, O_CREAT | O_RDONLY, S_IRUSR | S_IWUSR);
+  ret = open (NOWRITE, O_CREAT | O_RDONLY, S_IRUSR);
   if (ret >= 0)
     {
       close (ret);
index 5868465b83e6cad992cf087d11fe6ae9de487a11..ba936d508c2e3d8f865f76e58b1f9bbabd17be0f 100644 (file)
@@ -96,6 +96,8 @@ static void vfprintf_maybe_filtered (struct ui_file *, const char *,
 
 static void fputs_maybe_filtered (const char *, struct ui_file *, int);
 
+static void do_my_cleanups (struct cleanup **, struct cleanup *);
+
 #if defined (USE_MMALLOC) && !defined (NO_MMCHECK)
 static void malloc_botch (void);
 #endif
@@ -311,7 +313,7 @@ do_exec_error_cleanups (struct cleanup *old_chain)
   do_my_cleanups (&exec_error_cleanup_chain, old_chain);
 }
 
-void
+static void
 do_my_cleanups (struct cleanup **pmy_chain,
                struct cleanup *old_chain)
 {