Subversion Repositories Kolibri OS

Rev

Rev 5222 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5222 Rev 6324
Line 1... Line 1...
1
/* listing.c - maintain assembly listings
1
/* listing.c - maintain assembly listings
2
   Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
-
 
3
   2001, 2002, 2003, 2005, 2006, 2007, 2008, 2009, 2010
-
 
4
   Free Software Foundation, Inc.
2
   Copyright (C) 1991-2015 Free Software Foundation, Inc.
Line 5... Line 3...
5
 
3
 
Line 6... Line 4...
6
   This file is part of GAS, the GNU Assembler.
4
   This file is part of GAS, the GNU Assembler.
7
 
5
 
Line 89... Line 87...
89
 LISTING_RHS_WIDTH      Number of chars from the input file to print
87
 LISTING_RHS_WIDTH      Number of chars from the input file to print
90
                        on a line.  */
88
                        on a line.  */
Line 91... Line 89...
91
 
89
 
92
#include "as.h"
90
#include "as.h"
93
#include "filenames.h"
-
 
94
#include "obstack.h"
91
#include "filenames.h"
95
#include "safe-ctype.h"
92
#include "safe-ctype.h"
96
#include "input-file.h"
93
#include "input-file.h"
97
#include "subsegs.h"
94
#include "subsegs.h"
98
#include "bfdver.h"
95
#include "bfdver.h"
Line 253... Line 250...
253
}
250
}
Line 254... Line 251...
254
 
251
 
255
void
252
void
256
listing_warning (const char *message)
253
listing_warning (const char *message)
257
{
254
{
258
  listing_message (_("Warning:"), message);
255
  listing_message (_("Warning: "), message);
Line 259... Line 256...
259
}
256
}
260
 
257
 
261
void
258
void
262
listing_error (const char *message)
259
listing_error (const char *message)
263
{
260
{
Line 264... Line 261...
264
  listing_message (_("Error:"), message);
261
  listing_message (_("Error: "), message);
265
}
262
}
266
 
263