summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>1998-02-13 21:58:50 +0100
committerWerner Koch <wk@gnupg.org>1998-02-13 21:58:50 +0100
commitf477447d9af4097e8c5d4c15a3dd381237e93ee2 (patch)
treea655392c92fed02f06ebf503bf10b835b56e54e0 /include
parentadded assembler stuff for hppa (diff)
downloadgnupg2-f477447d9af4097e8c5d4c15a3dd381237e93ee2.tar.xz
gnupg2-f477447d9af4097e8c5d4c15a3dd381237e93ee2.zip
added option exportV0-2-6
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog0
-rw-r--r--include/distfiles1
-rw-r--r--include/util.h5
3 files changed, 3 insertions, 3 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
new file mode 100644
index 000000000..e69de29bb
--- /dev/null
+++ b/include/ChangeLog
diff --git a/include/distfiles b/include/distfiles
index d847316f2..35ca3220b 100644
--- a/include/distfiles
+++ b/include/distfiles
@@ -8,3 +8,4 @@ types.h
util.h
i18n.h
+ChangeLog
diff --git a/include/util.h b/include/util.h
index 1eca49ac4..e083c53c9 100644
--- a/include/util.h
+++ b/include/util.h
@@ -56,14 +56,14 @@ typedef struct {
} ARGPARSE_OPTS;
/*-- logger.c --*/
+void log_set_name( const char *name );
+const char *log_get_name(void);
void log_set_pid( int pid );
int log_get_errorcount( int clear );
void log_hexdump( const char *text, char *buf, size_t len );
void log_mpidump( const char *text, MPI a );
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5 )
- void printstr( int level, const char *fmt, ... )
- __attribute__ ((format (printf,2,3)));
void log_bug( const char *fmt, ... )
__attribute__ ((noreturn, format (printf,1,2)));
void log_bug0( const char *, int, const char * ) __attribute__ ((noreturn));
@@ -74,7 +74,6 @@ void log_mpidump( const char *text, MPI a );
void log_debug( const char *fmt, ... ) __attribute__ ((format (printf,1,2)));
#define BUG() log_bug0( __FILE__ , __LINE__, __FUNCTION__ )
#else
- void printstr( int level, const char *fmt, ... );
void log_bug( const char *fmt, ... );
void log_bug0( const char *, int );
void log_fatal( const char *fmt, ... );