makefs: ANSIfy

This commit is contained in:
Ed Maste 2018-05-16 02:58:05 +00:00
parent 4fa9985611
commit ab6f27aac1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=333664
2 changed files with 5 additions and 18 deletions

View File

@ -59,8 +59,7 @@ print_n_tabs(int n)
#if 0
void
debug_print_rrip_info(n)
cd9660node *n;
debug_print_rrip_info(cd9660node *n)
{
struct ISO_SUSP_ATTRIBUTES *t;
TAILQ_FOREACH(t, &node->head, rr_ll) {

View File

@ -85,10 +85,7 @@ ffs_fragacct_swap(struct fs *fs, int fragmap, int32_t fraglist[], int cnt, int n
* returns false if any corresponding bit in the free map is 0
*/
int
ffs_isblock(fs, cp, h)
struct fs *fs;
u_char *cp;
int32_t h;
ffs_isblock(struct fs *fs, u_char *cp, int32_t h)
{
u_char mask;
@ -116,10 +113,7 @@ ffs_isblock(fs, cp, h)
* returns false if any corresponding bit in the free map is 1
*/
int
ffs_isfreeblock(fs, cp, h)
struct fs *fs;
u_char *cp;
int32_t h;
ffs_isfreeblock(struct fs *fs, u_char *cp, int32_t h)
{
switch ((int)fs->fs_fragshift) {
@ -141,10 +135,7 @@ ffs_isfreeblock(fs, cp, h)
* take a block out of the map
*/
void
ffs_clrblock(fs, cp, h)
struct fs *fs;
u_char *cp;
int32_t h;
ffs_clrblock(struct fs *fs, u_char *cp, int32_t h)
{
switch ((int)fs->fs_fragshift) {
@ -170,10 +161,7 @@ ffs_clrblock(fs, cp, h)
* put a block into the map
*/
void
ffs_setblock(fs, cp, h)
struct fs *fs;
u_char *cp;
int32_t h;
ffs_setblock(struct fs *fs, u_char *cp, int32_t h)
{
switch ((int)fs->fs_fragshift) {