diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2011-08-18 02:37:17 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2011-08-18 02:37:17 +0200 |
commit | ac38884dc9ad32a11d09f55ba9fe399cd0a48e2f (patch) | |
tree | dfad8ea5bea0c24a7b0b1a483523915fefe83817 /gnupg-glue.h |
Import version from Kilobug
Diffstat (limited to 'gnupg-glue.h')
-rw-r--r-- | gnupg-glue.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/gnupg-glue.h b/gnupg-glue.h new file mode 100644 index 00000000..cbf0a103 --- /dev/null +++ b/gnupg-glue.h @@ -0,0 +1,40 @@ +#ifndef __GNUPG_GLUE_H__ +#define __GNUPG_GLUE_H__ + +#include <sys/types.h> +#include <random.h> + +#define SIZEOF_UNSIGNED_LONG 4 +typedef unsigned int u32; +typedef unsigned char byte; + +/* GnuPG's config.h */ +#define HAVE_GETTIMEOFDAY 1 +#define HAVE_GETRUSAGE 1 +#define HAVE_RAND 1 + +/* GnuPG's memory.h */ +#define m_alloc malloc +#define m_alloc_secure malloc +#define m_alloc_clear(x) calloc(x, 1) +#define m_alloc_secure_clear(x) calloc(x, 1) +#define m_free free +#define m_strdup strdup + +/* GnuPG's dynaload.h */ +#define dynload_getfnc_fast_random_poll() (0) +#define dynload_getfnc_gather_random() &gather_random +int +gather_random( void (*add)(const void*, size_t, int), int requester, + size_t length, int level ); + +/* GnuPG's miscellaneous stuff. */ +#define BUG() assert(0) +#define _(x) x +#define make_timestamp() time(0) +#define tty_printf printf +#define log_info(format, args...) printf(format , ## args) +#define log_fatal(format, args...) { printf(format , ## args) ; exit(2); } +#define DIM(v) (sizeof(v)/sizeof((v)[0])) + +#endif /* __GNUPG_GLUE_H__ */ |