blob: 83b75386f0bc7ee7f71544e743e687628dd4ce80 (
plain)
1
2
3
4
5
6
7
|
## 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);
#define strerror(a) _gpg_w32ce_strerror (a)
|