* hppa-tdep.c (hppa_push_arguments): Allocate enough space for
[deliverable/binutils-gdb.git] / gdb / standalone.c
index fa6d6fc44fd6dcee38b8cdad24f36e3ff0c7ed8f..687b3183b686c7590f95e8a009404f35ee746cf4 100644 (file)
@@ -59,8 +59,9 @@ chdir ()
 {}
 
 char *
-getwd (buf)
+getcwd (buf, len)
      char *buf;
+     unsigned int len;
 {
   buf[0] = '/';
   buf[1] = 0;
@@ -143,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));
@@ -337,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.026458 seconds and 4 git commands to generate.