diff options
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/c.h b/src/include/c.h index 2aeb743f9a0..a3c85f584cc 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.26 1997/10/30 23:36:56 momjian Exp $ + * $Id: c.h,v 1.27 1997/11/10 05:10:34 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -697,8 +697,8 @@ typedef struct Exception #define INT_ALIGN_MASK (sizeof(int32) - 1) /* This function gets call too often, so we inline it if we can */ -#define MemSet(start, val, len) do \ - { /* are we aligned for int32? */ \ +#define MemSet(start, val, len) do \ + { /* are we aligned for int32? */ \ /* We have to cast the pointer to int \ so we can do the AND */ \ if (((int)(start) & INT_ALIGN_MASK) == 0 && \ @@ -707,7 +707,7 @@ typedef struct Exception /* \ * We got this number by testing this \ * against the stock memset() on \ - * bsd/os 3.0. Larger values were \ + * bsd/os 3.0. Larger values were \ * slower. \ */ \ (len) <= 64) \ |