aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2017-05-01 23:20:35 +0200
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2017-09-19 05:01:55 +0200
commit46047a0706e58f79b5ccf4d48764d92483ef4fe9 (patch)
treeeecaff56e437142b76b9ac7f8ab533569001d0cc
parentf1e4ba13d1499407a72349b50052ae818c8d8553 (diff)
downloadsparse-dev-46047a0706e58f79b5ccf4d48764d92483ef4fe9.tar.gz
remove prototype extern int is_ptr_type()
because the function was already defined as an inline function in the same header file. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
-rw-r--r--symbol.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/symbol.h b/symbol.h
index 32744961..61476340 100644
--- a/symbol.h
+++ b/symbol.h
@@ -438,7 +438,6 @@ static inline struct symbol *lookup_keyword(struct ident *ident, enum namespace
#define is_restricted_type(type) (get_sym_type(type) == SYM_RESTRICT)
#define is_fouled_type(type) (get_sym_type(type) == SYM_FOULED)
#define is_bitfield_type(type) (get_sym_type(type) == SYM_BITFIELD)
-extern int is_ptr_type(struct symbol *);
void create_fouled(struct symbol *type);
struct symbol *befoul(struct symbol *type);