aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2010-05-15 14:44:13 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2010-05-15 14:44:13 +0000
commitc453569f0d52f2289dbbc8719215b342d85903f5 (patch)
treedf3beaef0f2c795997a49be6d5343c93226efe8a /src
parent5c337fb45ceaffc77b88fe7d519c4c62aff0ea7d (diff)
downloadpostgresql-c453569f0d52f2289dbbc8719215b342d85903f5.tar.gz
postgresql-c453569f0d52f2289dbbc8719215b342d85903f5.zip
Spell __NetBSD__ the same way everywhere. Per Giles Lean.
Diffstat (limited to 'src')
-rw-r--r--src/include/port.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/port.h b/src/include/port.h
index 7f190c461c6..584a89eb702 100644
--- a/src/include/port.h
+++ b/src/include/port.h
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/port.h,v 1.133 2010/05/15 10:14:20 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/port.h,v 1.134 2010/05/15 14:44:13 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -352,7 +352,7 @@ extern char *crypt(const char *key, const char *setting);
/* WIN32 handled in port/win32.h */
#ifndef WIN32
#define pgoff_t off_t
-#if defined(__bsdi__) || defined(netbsd)
+#if defined(__bsdi__) || defined(__NetBSD__)
extern int fseeko(FILE *stream, off_t offset, int whence);
extern off_t ftello(FILE *stream);
#endif