mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
First batch of changes to support W32CE.
Note that jnlib/w32-reg.c is not yet ready.
This commit is contained in:
parent
0e018d7144
commit
2cf687cb3e
25 changed files with 524 additions and 1800 deletions
|
@ -23,7 +23,12 @@
|
|||
|
||||
#include <errno.h>
|
||||
#ifndef __set_errno
|
||||
# define __set_errno(Val) errno = (Val)
|
||||
# ifdef HAVE_W32CE_SYSTEM
|
||||
# include <gpg-error.h>
|
||||
# define __set_errno(Val) gpg_err_set_errno ((Val))
|
||||
# else
|
||||
# define __set_errno(Val) errno = (Val)
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#include <stddef.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue