aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make/buf.c
diff options
context:
space:
mode:
authorRoman Divacky <rdivacky@FreeBSD.org>2009-01-20 17:15:12 +0000
committerRoman Divacky <rdivacky@FreeBSD.org>2009-01-20 17:15:12 +0000
commit3f8760e331c29aa69bf7c9d455762ab4fdf510b2 (patch)
tree48dd169701c2c4f3ae9322969bb59cd404eb52ff /usr.bin/make/buf.c
parent39e4a02c16ee878c8736ad9e02f26ed9cfb18be5 (diff)
Notes
Diffstat (limited to 'usr.bin/make/buf.c')
-rw-r--r--usr.bin/make/buf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/buf.c b/usr.bin/make/buf.c
index 6453abf5f8fa..7c6c01f4eb2a 100644
--- a/usr.bin/make/buf.c
+++ b/usr.bin/make/buf.c
@@ -58,7 +58,7 @@ __FBSDID("$FreeBSD$");
* Returns the number of bytes in the buffer. Doesn't include the
* null-terminating byte.
*/
-inline size_t
+size_t
Buf_Size(const Buffer *buf)
{
@@ -70,7 +70,7 @@ Buf_Size(const Buffer *buf)
*
* @note Adding data to the Buffer object may invalidate the reference.
*/
-inline char *
+char *
Buf_Data(const Buffer *bp)
{
@@ -98,7 +98,7 @@ BufExpand(Buffer *bp, size_t nb)
/**
* Add a single byte to the buffer.
*/
-inline void
+void
Buf_AddByte(Buffer *bp, Byte byte)
{