diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-11 09:50:55 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2023-01-03 11:02:11 -0800 |
commit | 0493c7216dd39baeb420583be71af095576dbf74 (patch) | |
tree | 0d41116a388b4af4bcf821b994eebe62110a7b2c /expr.c | |
parent | 4119707089b5c14f53bd5ff0b86ee7e575ac9316 (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.c')
-rw-r--r-- | expr.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -94,7 +94,7 @@ exprOpText(unsigned type) return buf; } -char * +static char * exprTypeText(unsigned type) { static char buf[20]; @@ -208,7 +208,7 @@ RadioLookup(XPointer priv, return True; } -int +static int TableLookup(XPointer priv, Atom elem, Atom field, unsigned type, ExprResult * val_rtrn) { @@ -255,7 +255,7 @@ LookupModIndex(XPointer priv, val_rtrn); } -int +static int LookupModMask(XPointer priv, Atom elem, Atom field, unsigned type, ExprResult * val_rtrn) { |