diff options
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/include/c.h b/src/include/c.h index eaf1ee7b03a..f56f1ea5da0 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.14 1997/08/12 20:16:17 momjian Exp $ + * $Id: c.h,v 1.15 1997/08/24 23:07:56 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -686,8 +686,7 @@ typedef struct Exception { * Does string copy, and forces terminating NULL */ /* we do this so if the macro is used in an if action, it will work */ -#define strNcpy(dest,src,len) do \ - {strncpy((dest),(src),(len));*((dest) + (len)) = '\0';} while (0) +#define strNcpy(dst,src,len) (strncpy((dst),(src),(len)),*((dst)+(len))='\0',dst) /* ---------------------------------------------------------------- * Section 9: externs |