diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/gpg-error.h | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2003-10-25 Werner Koch <[email protected]> + + * src/gpg-error.h: Include stdio.h for snprintf + prototype. Suggested by [email protected], fixes #gnupg/214. + 2003-10-11 Moritz Schulte <[email protected]> * src/gpg-error.m4: Do not ask gpg-error-config to change the diff --git a/src/gpg-error.h b/src/gpg-error.h index 5f92564..6fbb095 100644 --- a/src/gpg-error.h +++ b/src/gpg-error.h @@ -22,6 +22,7 @@ #define GPG_ERROR_H 1 #include <stddef.h> +#include <stdio.h> #ifdef __GNUC__ #define GPG_ERR_INLINE __inline__ |