aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/errors.h1
-rw-r--r--include/i18n.h2
-rw-r--r--include/mpi.h1
3 files changed, 3 insertions, 1 deletions
diff --git a/include/errors.h b/include/errors.h
index b405d2eee..4821a6bab 100644
--- a/include/errors.h
+++ b/include/errors.h
@@ -59,5 +59,6 @@
#define G10ERR_RENAME_FILE 37
#define G10ERR_DELETE_FILE 38
#define G10ERR_UNEXPECTED 39
+#define G10ERR_TIME_CONFLICT 40
#endif /*G10_ERRORS_H*/
diff --git a/include/i18n.h b/include/i18n.h
index d43c078a6..4a0f1ac78 100644
--- a/include/i18n.h
+++ b/include/i18n.h
@@ -25,7 +25,7 @@
#include <locale.h> /* suggested by Ernst Molitor */
#endif
-#ifdef HAVE_LIBINTL
+#ifdef ENABLE_NLS
#include <libintl.h>
#define _(a) gettext (a)
#ifdef gettext_noop
diff --git a/include/mpi.h b/include/mpi.h
index 87bb05363..feb915a2b 100644
--- a/include/mpi.h
+++ b/include/mpi.h
@@ -149,6 +149,7 @@ unsigned mpi_get_nbits( MPI a );
int mpi_test_bit( MPI a, unsigned n );
void mpi_set_bit( MPI a, unsigned n );
void mpi_set_highbit( MPI a, unsigned n );
+void mpi_clear_highbit( MPI a, unsigned n );
void mpi_clear_bit( MPI a, unsigned n );
void mpi_set_bytes( MPI a, unsigned nbits, byte (*fnc)(int), int opaque );
void mpi_rshift( MPI x, MPI a, unsigned n );