* acinclude.m4 (AM_INSTALL_LIBBFD): Fake to fool autotools.
[deliverable/binutils-gdb.git] / gprof / gprof.h
index cb3230ef7614c3ba0eba7451418d0092a16fb92b..911c5be3d6d5f0ec9c3076216b075d7f41c6d3fc 100644 (file)
 #ifndef gprof_h
 #define gprof_h
 
-#include <ansidecl.h>
-
 /* Include the BFD sysdep.h file.  */
 #include "sysdep.h"
+#include "bfd.h"
 
 /* Undefine the BFD PACKAGE and VERSION macros before including the
    gprof config.h file.  */
 #undef PACKAGE
 #undef VERSION
-/* Also undefine BFD's `_' macro; we have our own definition.  */
-#undef _
 
 #include "gconfig.h"
 
@@ -49,7 +46,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 */
 
 #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)
-#endif
-
-#ifndef LC_MESSAGES
-# define LC_MESSAGES 0
+/* Undefine BFD's `_' macro - it uses dgetext() and we want to use gettext().  */
+#undef  _
+#define _(String) gettext (String)
 #endif
 
-
-/*
- * These may already be defined on some systems.  We could probably
- * just use the BFD versions of these, since BFD has already dealt
- * with this problem.
- */
-#undef FALSE
-#define        FALSE   0
-#undef TRUE
-#define        TRUE    1
+#include "bin-bugs.h"
 
 #define STYLE_FLAT_PROFILE     (1<<0)
 #define STYLE_CALL_GRAPH       (1<<1)
 
 typedef enum
   {
-    FF_AUTO = 0, FF_MAGIC, FF_BSD, FF_PROF
+    FF_AUTO = 0, FF_MAGIC, FF_BSD, FF_BSD44, FF_PROF
   }
 File_Format;
 
-typedef int bool;
 typedef unsigned char UNIT[2]; /* unit of profiling */
 
 extern const char *whoami;     /* command-name, for error messages */
@@ -138,24 +108,24 @@ extern long hz;                   /* ticks per second */
 /*
  * Command-line options:
  */
-extern int debug_level;                /* debug level */
+extern int debug_level;                        /* debug level */
 extern int output_style;
-extern int output_width;       /* controls column width in index */
-extern bool bsd_style_output;  /* as opposed to FSF style output */
-extern bool demangle;          /* demangle symbol names? */
-extern bool discard_underscores;       /* discard leading underscores? */
-extern bool ignore_direct_calls;       /* don't count direct calls */
-extern bool ignore_static_funcs;       /* suppress static functions */
-extern bool ignore_zeros;      /* ignore unused symbols/files */
-extern bool line_granularity;  /* function or line granularity? */
-extern bool print_descriptions;        /* output profile description */
-extern bool print_path;                /* print path or just filename? */
-extern bool ignore_non_functions;/* Ignore non-function symbols.  */
-
-extern File_Format file_format;        /* requested file format */
-
-extern bool first_output;      /* no output so far? */
-
-extern void done PARAMS ((int status));
+extern int output_width;               /* controls column width in index */
+extern boolean bsd_style_output;       /* as opposed to FSF style output */
+extern boolean demangle;               /* demangle symbol names? */
+extern boolean discard_underscores;    /* discard leading underscores? */
+extern boolean ignore_direct_calls;    /* don't count direct calls */
+extern boolean ignore_static_funcs;    /* suppress static functions */
+extern boolean ignore_zeros;           /* ignore unused symbols/files */
+extern boolean line_granularity;       /* function or line granularity? */
+extern boolean print_descriptions;     /* output profile description */
+extern boolean print_path;             /* print path or just filename? */
+extern boolean ignore_non_functions;   /* Ignore non-function symbols.  */
+
+extern File_Format file_format;                /* requested file format */
+
+extern boolean first_output;           /* no output so far? */
+
+extern void done PARAMS ((int status)) ATTRIBUTE_NORETURN;
 
 #endif /* gprof_h */
This page took 0.024553 seconds and 4 git commands to generate.