summaryrefslogtreecommitdiff
path: root/expr.h
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-12-11 09:50:55 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2023-01-03 11:02:11 -0800
commit0493c7216dd39baeb420583be71af095576dbf74 (patch)
tree0d41116a388b4af4bcf821b994eebe62110a7b2c /expr.h
parent4119707089b5c14f53bd5ff0b86ee7e575ac9316 (diff)
Mark more functions and variables static
Stop exporting things that aren't used outside the file that defines them. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'expr.h')
-rw-r--r--expr.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/expr.h b/expr.h
index 163d474..b0b79dc 100644
--- a/expr.h
+++ b/expr.h
@@ -42,9 +42,6 @@ typedef Bool(*IdentLookupFunc) (XPointer /* priv */ ,
ExprResult * /* val_rtrn */
);
-extern char *exprTypeText(unsigned /* type */
- );
-
extern int ExprResolveLhs(ExprDef * /* expr */ ,
ExprResult * /* elem_rtrn */ ,
ExprResult * /* field_rtrn */ ,
@@ -89,13 +86,6 @@ extern int SimpleLookup(XPointer /* priv */ ,
ExprResult * /* val_rtrn */
);
-extern int TableLookup(XPointer /* priv */ ,
- Atom /* elem */ ,
- Atom /* field */ ,
- unsigned /* type */ ,
- ExprResult * /* val_rtrn */
- );
-
extern int LookupModIndex(XPointer /* priv */ ,
Atom /* elem */ ,
Atom /* field */ ,
@@ -103,13 +93,6 @@ extern int LookupModIndex(XPointer /* priv */ ,
ExprResult * /* val_rtrn */
);
-extern int LookupModMask(XPointer /* priv */ ,
- Atom /* elem */ ,
- Atom /* field */ ,
- unsigned /* type */ ,
- ExprResult * /* val_rtrn */
- );
-
extern int ExprResolveModIndex(ExprDef * /* expr */ ,
ExprResult * /* val_rtrn */ ,
IdentLookupFunc /* lookup */ ,