missed this in the last commit.

This commit is contained in:
Alan Modra 2000-05-26 13:16:03 +00:00
parent 5af11cab92
commit 63999bc77e

View file

@ -21,7 +21,7 @@
#ifndef gprof_h #ifndef gprof_h
#define gprof_h #define gprof_h
#include <ansidecl.h> #include "ansidecl.h"
/* Include the BFD sysdep.h file. */ /* Include the BFD sysdep.h file. */
#include "sysdep.h" #include "sysdep.h"
@ -30,8 +30,6 @@
gprof config.h file. */ gprof config.h file. */
#undef PACKAGE #undef PACKAGE
#undef VERSION #undef VERSION
/* Also undefine BFD's `_' macro; we have our own definition. */
#undef _
#include "gconfig.h" #include "gconfig.h"
@ -49,7 +47,7 @@
#define PATH_MAX 1024 #define PATH_MAX 1024
#endif #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 GMONNAME "gmon.out" /* default profile filename */
#define GMONSUM "gmon.sum" /* profile summary filename */ #define GMONSUM "gmon.sum" /* profile summary filename */
@ -58,22 +56,9 @@
#endif #endif
#ifdef ENABLE_NLS #ifdef ENABLE_NLS
# include <libintl.h> /* Undefine BFD's `_' macro; we have our own definition. */
# define _(String) gettext (String) #undef _
# ifdef gettext_noop #define _(String) gettext (String)
# 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)
#endif #endif
#include "bin-bugs.h" #include "bin-bugs.h"