diff options
Diffstat (limited to 'src/util.h')
| -rw-r--r-- | src/util.h | 4 | 
1 files changed, 3 insertions, 1 deletions
| @@ -35,6 +35,8 @@  #ifdef HAVE_UNISTD_H  # include <unistd.h>  #endif +#include <stdint.h> +  #include "gpgme.h" @@ -143,7 +145,7 @@ int _gpgme_split_fields (char *string, char **array, int arraysize);  gpgme_error_t _gpgme_strtoul_field (const char *string, unsigned long *result);  /* Convert STRING into an offset value similar to atoi().  */ -gpgme_off_t _gpgme_string_to_off (const char *string); +uint64_t _gpgme_string_to_off (const char *string);  /* Parse the string TIMESTAMP into a time_t.  The string may either be     seconds since Epoch or in the ISO 8601 format like | 
