diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2009-03-23 18:21:24 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2009-03-23 18:21:24 +0000 |
commit | 2ffd03c214a9228be616153f69b2372dedeadabc (patch) | |
tree | e00b311c30bf07c847c640116bcfcd858c87744a | |
parent | f4857563101a7b0122c855c0ba84adfda8659958 (diff) |
kill SIZE_LEFT() macro, no longer used
-rw-r--r-- | usr.bin/cvs/buf.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/cvs/buf.c b/usr.bin/cvs/buf.c index 91064edc182..2aff95a20b3 100644 --- a/usr.bin/cvs/buf.c +++ b/usr.bin/cvs/buf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: buf.c,v 1.72 2008/06/10 01:00:34 joris Exp $ */ +/* $OpenBSD: buf.c,v 1.73 2009/03/23 18:21:23 joris Exp $ */ /* * Copyright (c) 2003 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -46,8 +46,6 @@ struct cvs_buf { size_t cb_len; }; -#define SIZE_LEFT(b) (b->cb_size - b->cb_len) - static void cvs_buf_grow(BUF *, size_t); /* |