]> granicus.if.org Git - postgresql/blobdiff - src/include/access/sdir.h
Update copyright to 2004.
[postgresql] / src / include / access / sdir.h
index 3caa8b3ae420ddf8dfe33bd3243f6283b3ff1e0b..69ea5105d637c76bc98fc239d6629831bd1d735a 100644 (file)
@@ -4,10 +4,10 @@
  *       POSTGRES scan direction definitions.
  *
  *
- * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- * $Id: sdir.h,v 1.10 2001/10/25 05:49:55 momjian Exp $
+ * $PostgreSQL: pgsql/src/include/access/sdir.h,v 1.16 2004/08/29 04:13:03 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -21,9 +21,9 @@
  */
 typedef enum ScanDirection
 {
-                               BackwardScanDirection = -1,
-                               NoMovementScanDirection = 0,
-                               ForwardScanDirection = 1
+       BackwardScanDirection = -1,
+       NoMovementScanDirection = 0,
+       ForwardScanDirection = 1
 } ScanDirection;
 
 /*
@@ -54,4 +54,5 @@ typedef enum ScanDirection
  */
 #define ScanDirectionIsForward(direction) \
        ((bool) ((direction) == ForwardScanDirection))
-#endif  /* SDIR_H */
+
+#endif   /* SDIR_H */