diff options
author | Alan Modra <amodra@gmail.com> | 2000-05-26 13:16:03 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-05-26 13:16:03 +0000 |
commit | 63999bc77ea9235df7970dba3c94333153cfde07 (patch) | |
tree | ab7f9cbaa3b6f2306534fb6a3402c35b480d3d1f /gprof | |
parent | 5af11cab92a8d4ed9b0cd7a46f05cf02a8ba901e (diff) | |
download | binutils-63999bc77ea9235df7970dba3c94333153cfde07.zip binutils-63999bc77ea9235df7970dba3c94333153cfde07.tar.gz binutils-63999bc77ea9235df7970dba3c94333153cfde07.tar.bz2 |
missed this in the last commit.
Diffstat (limited to 'gprof')
-rw-r--r-- | gprof/gprof.h | 25 |
1 files changed, 5 insertions, 20 deletions
diff --git a/gprof/gprof.h b/gprof/gprof.h index a144bf4..43e7675 100644 --- a/gprof/gprof.h +++ b/gprof/gprof.h @@ -21,7 +21,7 @@ #ifndef gprof_h #define gprof_h -#include <ansidecl.h> +#include "ansidecl.h" /* Include the BFD sysdep.h file. */ #include "sysdep.h" @@ -30,8 +30,6 @@ gprof config.h file. */ #undef PACKAGE #undef VERSION -/* Also undefine BFD's `_' macro; we have our own definition. */ -#undef _ #include "gconfig.h" @@ -49,7 +47,7 @@ #define PATH_MAX 1024 #endif -#define A_OUTNAME "a.out" /* default core filename */ +#define A_OUTNAME "a.out" /* default core filename */ #define GMONNAME "gmon.out" /* default profile filename */ #define GMONSUM "gmon.sum" /* profile summary filename */ @@ -58,22 +56,9 @@ #endif #ifdef ENABLE_NLS -# include <libintl.h> -# define _(String) gettext (String) -# ifdef gettext_noop -# define N_(String) gettext_noop (String) -# else -# define N_(String) (String) -# endif -#else -/* Stubs that do something close enough. */ -# define textdomain(String) (String) -# define gettext(String) (String) -# define dgettext(Domain,Message) (Message) -# define dcgettext(Domain,Message,Type) (Message) -# define bindtextdomain(Domain,Directory) (Domain) -# define _(String) (String) -# define N_(String) (String) +/* Undefine BFD's `_' macro; we have our own definition. */ +#undef _ +#define _(String) gettext (String) #endif #include "bin-bugs.h" |