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