blob: c6207bb2bbbc69c4053ca0c78528aa76202a8335 (
plain)
| 1
2
3
4
5
6
7
8
 | ## w32ce-add.h - Snippet to be be included into gpg-error.h.
## (Comments are indicated by a double hash mark)
/* Substitute for strerror - this one is thread safe.  */
char *_gpg_w32ce_strerror (int err);
#ifdef GPG_ERR_ENABLE_ERRNO_MACROS
# define strerror(a) _gpg_w32ce_strerror (a)
#endif
 |