diff options
| author | Werner Koch <[email protected]> | 1998-05-13 17:53:36 +0000 |
|---|---|---|
| committer | Werner Koch <[email protected]> | 1998-05-13 17:53:36 +0000 |
| commit | 0e5a31d7be80d1dd1bcdff04dad226f0f49e0cce (patch) | |
| tree | c569c8c335f811af291181d48bceb336906025a0 /include/util.h | |
| parent | add DSA key generation (diff) | |
| download | gnupg-0e5a31d7be80d1dd1bcdff04dad226f0f49e0cce.tar.gz gnupg-0e5a31d7be80d1dd1bcdff04dad226f0f49e0cce.zip | |
can create v4 signatures
Diffstat (limited to 'include/util.h')
| -rw-r--r-- | include/util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/util.h b/include/util.h index c56cc1991..5fcce6063 100644 --- a/include/util.h +++ b/include/util.h @@ -134,6 +134,10 @@ char *strlwr(char *a); #ifndef HAVE_STRTOUL #define strtoul(a,b,c) ((unsigned long)strtol((a),(b),(c))) #endif +#ifndef HAVE_MEMMOVE + #define memmove(d, s, n) bcopy((s), (d), (n)) +#endif + /******** some macros ************/ #ifndef STR |
