diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-04-13 10:05:30 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-04-13 10:05:30 +0000 |
| commit | a59e308cd714fe08531d16d8a5ebde8cd7b464fc (patch) | |
| tree | dc49691f525cb13facff2b634c94329ec620d4ac /usr.bin/make/buf.c | |
| parent | 46f905209dab4188d0b08579a0212aadfe3ea223 (diff) | |
Notes
Diffstat (limited to 'usr.bin/make/buf.c')
| -rw-r--r-- | usr.bin/make/buf.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/usr.bin/make/buf.c b/usr.bin/make/buf.c index dfa624041ba2..f70dbd62972a 100644 --- a/usr.bin/make/buf.c +++ b/usr.bin/make/buf.c @@ -94,7 +94,7 @@ __RCSID("$FreeBSD$"); */ void Buf_OvAddByte (bp, byte) - register Buffer bp; + Buffer bp; int byte; { int nbytes = 1; @@ -125,8 +125,8 @@ Buf_OvAddByte (bp, byte) */ void Buf_AddBytes (bp, numBytes, bytesPtr) - register Buffer bp; - int numBytes; + Buffer bp; + int numBytes; const Byte *bytesPtr; { @@ -157,7 +157,7 @@ Buf_AddBytes (bp, numBytes, bytesPtr) */ void Buf_UngetByte (bp, byte) - register Buffer bp; + Buffer bp; int byte; { @@ -207,7 +207,7 @@ Buf_UngetByte (bp, byte) */ void Buf_UngetBytes (bp, numBytes, bytesPtr) - register Buffer bp; + Buffer bp; int numBytes; Byte *bytesPtr; { @@ -252,7 +252,7 @@ Buf_UngetBytes (bp, numBytes, bytesPtr) */ int Buf_GetByte (bp) - register Buffer bp; + Buffer bp; { int res; @@ -285,7 +285,7 @@ Buf_GetByte (bp) */ int Buf_GetBytes (bp, numBytes, bytesPtr) - register Buffer bp; + Buffer bp; int numBytes; Byte *bytesPtr; { @@ -319,7 +319,7 @@ Buf_GetBytes (bp, numBytes, bytesPtr) */ Byte * Buf_GetAll (bp, numBytesPtr) - register Buffer bp; + Buffer bp; int *numBytesPtr; { @@ -345,7 +345,7 @@ Buf_GetAll (bp, numBytesPtr) */ void Buf_Discard (bp, numBytes) - register Buffer bp; + Buffer bp; int numBytes; { |
