aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>1998-03-19 15:27:29 +0000
committerWerner Koch <[email protected]>1998-03-19 15:27:29 +0000
commit6b91e7762c65097a103b2b17db304a4d85b3573d (patch)
tree4303dbf887db8130c58e1025cac3c8fe291c6ceb /include
parentNEw test keyrings (diff)
downloadgnupg-6b91e7762c65097a103b2b17db304a4d85b3573d.tar.gz
gnupg-6b91e7762c65097a103b2b17db304a4d85b3573d.zip
some cleanups
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 );