diff options
author | Werner Koch <[email protected]> | 1998-01-24 16:32:27 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 1998-01-24 16:32:27 +0000 |
commit | d71f8bce7e73b41c1d19d2dae6396ea8eace9c07 (patch) | |
tree | 89854e6434a270ad627f4f4011385a7739f8f3df /include/util.h | |
parent | backup (diff) | |
download | gnupg-d71f8bce7e73b41c1d19d2dae6396ea8eace9c07.tar.gz gnupg-d71f8bce7e73b41c1d19d2dae6396ea8eace9c07.zip |
Trust stuff works partly.
Diffstat (limited to 'include/util.h')
-rw-r--r-- | include/util.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/util.h b/include/util.h index a33b7f21f..fe834e1a2 100644 --- a/include/util.h +++ b/include/util.h @@ -121,7 +121,9 @@ char *stpcpy(char *a,const char *b); #ifndef HAVE_STRLWR char *strlwr(char *a); #endif - +#ifndef HAVE_STRTOUL + #define strtoul(a,b,c) ((unsigned long)strtol((a),(b),(c))) +#endif /******** some macros ************/ #ifndef STR |