]> git.karo-electronics.de Git - linux-beck.git/blobdiff - scripts/kconfig/expr.c
kbuild: add static to prototypes
[linux-beck.git] / scripts / kconfig / expr.c
index cd8a2f00a97ea1834cb98f91d0acc50bc4c471ff..edd3f39a080a422175bf512c94dd1d5bf87e059b 100644 (file)
@@ -348,7 +348,7 @@ struct expr *expr_trans_bool(struct expr *e)
 /*
  * e1 || e2 -> ?
  */
-struct expr *expr_join_or(struct expr *e1, struct expr *e2)
+static struct expr *expr_join_or(struct expr *e1, struct expr *e2)
 {
        struct expr *tmp;
        struct symbol *sym1, *sym2;
@@ -412,7 +412,7 @@ struct expr *expr_join_or(struct expr *e1, struct expr *e2)
        return NULL;
 }
 
-struct expr *expr_join_and(struct expr *e1, struct expr *e2)
+static struct expr *expr_join_and(struct expr *e1, struct expr *e2)
 {
        struct expr *tmp;
        struct symbol *sym1, *sym2;