aboutsummaryrefslogtreecommitdiff
path: root/contrib/groff/src/preproc/pic/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/groff/src/preproc/pic/text.h')
-rw-r--r--contrib/groff/src/preproc/pic/text.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/contrib/groff/src/preproc/pic/text.h b/contrib/groff/src/preproc/pic/text.h
deleted file mode 100644
index f9d34875075f..000000000000
--- a/contrib/groff/src/preproc/pic/text.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// -*- C++ -*-
-
-enum hadjustment {
- CENTER_ADJUST,
- LEFT_ADJUST,
- RIGHT_ADJUST
- };
-
-enum vadjustment {
- NONE_ADJUST,
- ABOVE_ADJUST,
- BELOW_ADJUST
- };
-
-struct adjustment {
- hadjustment h;
- vadjustment v;
-};
-
-struct text_piece {
- char *text;
- adjustment adj;
- const char *filename;
- int lineno;
-
- text_piece();
- ~text_piece();
-};