diff options
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/include/c.h b/src/include/c.h index fb51e5011c3..ea96d87b911 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.65 2000/03/19 22:08:51 tgl Exp $ + * $Id: c.h,v 1.66 2000/03/20 04:02:46 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -673,8 +673,10 @@ extern int assertTest(int val); * overhead. * * We got the 64 number by testing this against the stock memset() on - * BSD/OS 3.0. Larger values were slower. (I think the crossover point - * could be a good deal higher for most platforms, actually --- tgl) + * BSD/OS 3.0. Larger values were slower. bjm 1997/09/11 + * + * I think the crossover point could be a good deal higher for + * most platforms, actually. tgl 2000-03-19 */ #define MemSet(start, val, len) \ do \ |