X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fsrc%2Fmytypes.h;h=8ae7cbbb45e6509c0eeee0dc74c0824f85f18898;hb=a75ebe0dcc5faeb915cacb0d9db66d2475789116;hp=6d2f169b7fc342f9a68679cb87277322bb9e7cc5;hpb=36eb5d3d77426d8cbf4243ea752f8d8cd1d5c682;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/src/mytypes.h b/src/src/mytypes.h index 6d2f169b7..8ae7cbbb4 100644 --- a/src/src/mytypes.h +++ b/src/src/mytypes.h @@ -3,6 +3,7 @@ *************************************************/ /* Copyright (c) University of Cambridge 1995 - 2018 */ +/* Copyright (c) The Exim Maintainers 2020 */ /* See the file NOTICE for conditions of use and distribution. */ @@ -124,7 +125,7 @@ functions that are called quite often; for other calls to external libraries #define Ustrtoul(s,t,b) strtoul(CCS(s),CSS(t),b) #define Uunlink(s) unlink(CCS(s)) -#ifdef EM_VERSION_C +#if defined(EM_VERSION_C) || defined(LOCAL_SCAN) || defined(DLFUNC_IMPL) # define Ustrcat(s,t) strcat(CS(s), CCS(t)) # define Ustrcpy(s,t) strcpy(CS(s), CCS(t)) # define Ustrncat(s,t,n) strncat(CS(s), CCS(t), n)