* elflink.h (elf_bfd_final_link): Check if dynobj is not NULL
[binutils-gdb.git] / gprof / gprof.h
index b0bc112bed7c50d09aee62f2d44c2f0204b057c8..fdf9a28e4ac3af8f0b90ce1313f0267a339d4a3c 100644 (file)
@@ -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"
 #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 */
 
+#ifdef HAVE_LOCALE_H
+# include <locale.h>
+#endif
+
 #ifdef ENABLE_NLS
-#include <libintl.h>
+/* Undefine BFD's `_' macro - it uses dgetext() and we want to use gettext().  */
+#undef  _
 #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)
-/* In this case we don't care about the value.  */
-#ifndef LC_MESSAGES
-#define LC_MESSAGES 0
-#endif
 #endif
 
+#include "bin-bugs.h"
+
 /*
  * These may already be defined on some systems.  We could probably
  * just use the BFD versions of these, since BFD has already dealt
 
 typedef enum
   {
-    FF_AUTO = 0, FF_MAGIC, FF_BSD, FF_PROF
+    FF_AUTO = 0, FF_MAGIC, FF_BSD, FF_BSD44, FF_PROF
   }
 File_Format;