diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2001-06-03 14:53:56 +0000 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2001-06-03 14:53:56 +0000 |
| commit | 12c1552066cac81a6b93062e8966cfa0d2d56af5 (patch) | |
| tree | 44fdd9a63ca2c0b2d5b1497b30fe8581da5f1505 /src/include/c.h | |
| parent | 277a47ad0febca0eeaf09b695639df7d93e3c628 (diff) | |
| download | postgresql-12c1552066cac81a6b93062e8966cfa0d2d56af5.tar.gz | |
Mark many strings in backend not covered by elog for translation. Also,
make strings in xlog.c look more like English and less like binary noise.
Diffstat (limited to 'src/include/c.h')
| -rw-r--r-- | src/include/c.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/c.h b/src/include/c.h index fa8811d314..51727b42db 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.94 2001/06/02 18:25:18 petere Exp $ + * $Id: c.h,v 1.95 2001/06/03 14:53:56 petere Exp $ * *------------------------------------------------------------------------- */ @@ -122,6 +122,9 @@ #define dummyret char #endif +#ifndef __GNUC__ +#define __attribute__(x) +#endif /* ---------------------------------------------------------------- * Section 2: bool, true, false, TRUE, FALSE, NULL |
