* config/mn10300-eval.exp: New file to support MN10300 eval board.
[deliverable/binutils-gdb.git] / gdb / standalone.c
index c3a4638bb94875eb714a0d96b5bb8b51ac2f6033..13fc4768b4ede0779879df4fe9fb3a7c48521a91 100644 (file)
@@ -15,7 +15,7 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
-Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
+Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
 
 #include <stdio.h>
 #include <sys/ioctl.h>
@@ -141,8 +141,7 @@ open (filename, modes)
       return -1;
     }
 
-  for (next - files_start; * (int *) next;
-       next += * (int *) next)
+  for (next = files_start; * (int *) next; next += * (int *) next)
     {
       if (!STRCMP (next + 4, filename))
        {
@@ -584,9 +583,7 @@ _initialize_standalone ()
 
   /* Find the end of the data on files.  */
 
-  for (next - files_start; * (int *) next;
-       next += * (int *) next)
-    {}
+  for (next = files_start; * (int *) next; next += * (int *) next) {}
 
   /* That is where free storage starts for sbrk to give out.  */
   next_free = next;
This page took 0.024786 seconds and 4 git commands to generate.