Lint fixes from Paul Eggert (eggert@twinsun.com):
[deliverable/binutils-gdb.git] / gdb / standalone.c
index 88c70536be3afcf32574b6fb97336654b6f33584..687b3183b686c7590f95e8a009404f35ee746cf4 100644 (file)
@@ -29,7 +29,6 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #endif /* SIGTSTP and SIGIO defined (must be 4.2) */
 
 #include "defs.h"
-#include "param.h"
 #include "signals.h"
 #include "symtab.h"
 #include "frame.h"
@@ -60,8 +59,9 @@ chdir ()
 {}
 
 char *
-getwd (buf)
+getcwd (buf, len)
      char *buf;
+     unsigned int len;
 {
   buf[0] = '/';
   buf[1] = 0;
@@ -144,7 +144,7 @@ open (filename, modes)
   for (next - files_start; * (int *) next;
        next += * (int *) next)
     {
-      if (!strcmp (next + 4, filename))
+      if (!STRCMP (next + 4, filename))
        {
          sourcebeg = next + 4 + strlen (next + 4) + 1;
          sourcebeg = (char *) (((int) sourcebeg + 3) & (-4));
@@ -338,6 +338,8 @@ get_exec_file (err)
   return "run";
 }
 
+/* Nonzero if there is a core file.  */
+
 have_core_file_p ()
 {
   return 0;
This page took 0.023066 seconds and 4 git commands to generate.