~ubuntu-branches/ubuntu/trusty/gnutls26/trusty-security

« back to all changes in this revision

Viewing changes to lib/gnutls_errors.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Metzler
  • Date: 2010-04-22 19:29:52 UTC
  • mto: (12.4.3 experimental) (1.5.1)
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: james.westby@ubuntu.com-20100422192952-gbj6cvaan8e4ejck
Tags: upstream-2.9.10
ImportĀ upstreamĀ versionĀ 2.9.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009 Free Software Foundation
 
2
 * Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2008, 2009, 2010
 
3
 * Free Software Foundation, Inc.
3
4
 *
4
5
 * Author: Nikos Mavrogiannopoulos
5
6
 *
41
42
#endif
42
43
 
43
44
int _gnutls_asn2err (int asn_err);
44
 
void _gnutls_log (int, const char *fmt, ...)
 
45
void
 
46
_gnutls_log (int, const char *fmt, ...)
45
47
#ifdef __GNUC__
46
 
__attribute__ ((format (printf, 2, 3)));
 
48
  __attribute__ ((format (printf, 2, 3)));
47
49
#else
48
 
;
 
50
 ;
49
51
#endif
50
52
 
51
 
void _gnutls_mpi_log (const char *prefix, bigint_t a);
 
53
     void _gnutls_mpi_log (const char *prefix, bigint_t a);
52
54
 
53
55
#ifdef C99_MACROS
54
56
#define LEVEL(l, ...) if (_gnutls_log_level >= l || _gnutls_log_level > 9) \
77
79
# define _gnutls_write_log _gnutls_null_log
78
80
# define _gnutls_x509_log _gnutls_null_log
79
81
 
80
 
void _gnutls_null_log (void *, ...);
 
82
     void _gnutls_null_log (void *, ...);
81
83
 
82
84
#endif /* C99_MACROS */
83
85