summaryrefslogtreecommitdiff
path: root/libyasm/expr.h
diff options
context:
space:
mode:
authorPeter Johnson <peter@tortall.net>2002-04-22 06:17:11 +0000
committerPeter Johnson <peter@tortall.net>2002-04-22 06:17:11 +0000
commita6f0bff9727c239784c84741d2b1b6ab9ed31f46 (patch)
tree6908e3a3c0abe8c910cdec0299e505a8afc61eee /libyasm/expr.h
parentbb71f908bc135c355d5c9d042bba5253f0afd87e (diff)
downloadyasm-a6f0bff9727c239784c84741d2b1b6ab9ed31f46.tar.gz
Splint cleanups: expr_copy_* don't take a NULL, so they can't return NULL.
svn path=/trunk/yasm/; revision=599
Diffstat (limited to 'libyasm/expr.h')
-rw-r--r--libyasm/expr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libyasm/expr.h b/libyasm/expr.h
index d76a5d4f..3403edb2 100644
--- a/libyasm/expr.h
+++ b/libyasm/expr.h
@@ -41,7 +41,7 @@ typedef struct ExprItem ExprItem;
expr_new (EXPR_IDENT, (r), (ExprItem *)NULL)
/* allocates and makes an exact duplicate of e */
-/*@null@*/ expr *expr_copy(const expr *e);
+expr *expr_copy(const expr *e);
void expr_delete(/*@only@*/ /*@null@*/ expr *e);