diff options
Diffstat (limited to 'contrib/less/position.h')
-rw-r--r-- | contrib/less/position.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/contrib/less/position.h b/contrib/less/position.h new file mode 100644 index 000000000000..3ce7f596ed21 --- /dev/null +++ b/contrib/less/position.h @@ -0,0 +1,19 @@ +/* + * Copyright (C) 1984-2000 Mark Nudelman + * + * You may distribute under the terms of either the GNU General Public + * License or the Less License, as specified in the README file. + * + * For more information about less, or for information on how to + * contact the author, see the README file. + */ + + +/* + * Include file for interfacing to position.c modules. + */ +#define TOP (0) +#define TOP_PLUS_ONE (1) +#define BOTTOM (-1) +#define BOTTOM_PLUS_ONE (-2) +#define MIDDLE (-3) |